diff options
author | Pixel <Pixel> | 2002-06-18 15:59:42 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-06-18 15:59:42 +0000 |
commit | 0cc4a6ec508043c5dbf3edde9398df8e4034be8b (patch) | |
tree | e2eb47a5e042288888cc5001fa281dfc60b9ffb6 /Makefile | |
parent | 4f9643c00b8be3ef4381d81999c096acb40c6040 (diff) |
Still working on it.
Diffstat (limited to 'Makefile')
-rwxr-xr-x | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |