summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPixel <Pixel>2002-05-25 05:35:07 +0000
committerPixel <Pixel>2002-05-25 05:35:07 +0000
commitc19473a09f0e7a0262a603faee0b0e50654c0bae (patch)
tree6ee80c696cd302d03b37a816915051b08f15c4a4 /Makefile
parent28374301bfd1f96490c1906cd239be05af062953 (diff)
Welcome to the DTE thing.
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5a3134a..d741a4d 100755
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
CPPFLAGS=-Wall -g -I. -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror
CXX=g++
-TARGET = lz77 dlz77 yazedc cd-tool
+TARGET = lz77 dlz77 yazedc cd-tool dte-tool dte-tool-asm
all: ${TARGET}
@@ -19,5 +19,11 @@ yazedc: yazedc.cpp crctables crctable.out
cd-tool: cd-tool.cpp cdutils.cpp cdutils.h fileutils.cpp fileutils.h generic.cpp generic.h yazedc.cpp yazedc.h
${CXX} ${CPPFLAGS} ${LDFLAGAS} cd-tool.cpp cdutils.cpp fileutils.cpp yazedc.cpp generic.cpp -o cd-tool
+dte-tool-asm: dteutils.cpp generic.h generic.cpp fileutils.cpp fileutils.h dte-asm.S
+ ${CXX} ${CPPFLAGS} ${LDFLAGS} dteutils.cpp generic.cpp fileutils.cpp dte-asm.S -o dte-tool-asm -DUSEASM -DDTEMAIN
+
+dte-tool: dteutils.cpp generic.h generic.cpp fileutils.cpp fileutils.h
+ ${CXX} ${CPPFLAGS} ${LDFLAGS} dteutils.cpp generic.cpp fileutils.cpp -o dte-tool -DDTEMAIN
+
clean:
rm -f *.o ${TARGET} compil.c