summaryrefslogtreecommitdiff
path: root/Cpu/Makefile
blob: 87835d6fe4a00e7d20bfcb55a7e805b815c524f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
TARGET = Cpu.a

SRCS = \
cpu.cpp \
cpu-mips.cpp \

SPATH =

CPPFLAGS = -I. -I../Database -I../Database/internals

include ../Makefile.cfg

$(TARGET): $(OBJS)
	$(AR) $@ $^

-include $(DEPS)