summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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