diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-21 03:37:45 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2009-09-21 03:37:45 +0200 |
commit | 14d90c9e1171655b864316c9c4aa34033fdd3a45 (patch) | |
tree | 3c297e80f774b4a6452331ff840fe6c415875e11 /Cpu/Makefile | |
parent | 8c9c24358cca81cdb15462cb74afc5f173966c79 (diff) |
Very first bit towards a Mips/PSX disassembler
Diffstat (limited to 'Cpu/Makefile')
-rw-r--r-- | Cpu/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Cpu/Makefile b/Cpu/Makefile new file mode 100644 index 0000000..87835d6 --- /dev/null +++ b/Cpu/Makefile @@ -0,0 +1,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) |