summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-18 15:59:42 +0000
committerPixel <Pixel>2002-06-18 15:59:42 +0000
commit0cc4a6ec508043c5dbf3edde9398df8e4034be8b (patch)
treee2eb47a5e042288888cc5001fa281dfc60b9ffb6 /Makefile
parent4f9643c00b8be3ef4381d81999c096acb40c6040 (diff)
Still working on it.
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index f95b372..e745a64 100755
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
#!/usr/bin/make -f
-CPPFLAGS=-Wall -g -I. -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror
+CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror
CXX=g++
-TARGET = lzss dlzss yazedc cd-tool dte-tool
+TARGET = lzss dlzss yazedc cd-tool dte-tool str-tool
all: ${TARGET}
@@ -25,5 +25,8 @@ dte-tool-asm: dteutils.cpp generic.h generic.cpp fileutils.cpp fileutils.h dte-a
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
+str-tool: str-util.cpp generic.h generic.cpp fileutils.cpp fileutils.h
+ ${CXX} ${CPPFLAGS} ${LDFLAGS} str-util.cpp generic.cpp fileutils.cpp -o str-tool -DSTR_MAIN
+
clean:
rm -f *.o ${TARGET} compil.c