diff options
author | Pixel <Pixel> | 2002-07-17 09:11:28 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-07-17 09:11:28 +0000 |
commit | 4ec72c36d4c8d5bbade0d828a184b20340e5e140 (patch) | |
tree | cc29084e902fda9794b16e363350185db19d26bf | |
parent | 4c046f6b096a0474b811c0823c6115d16c05d8a2 (diff) |
Bleh
-rwxr-xr-x | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,7 @@ CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror CXX=g++ SUBDIRS = psxdev Xenogears VP MegamanX5 -TARGET = lzss dlzss cd-tool str-tool +TARGET = lzss dlzss cd-tool str-tool crypto-search all: subdirs ${TARGET} @@ -29,6 +29,9 @@ dte-tool: dteutils.o generic.h generic.o fileutils.o fileutils.h dtemain.o Makef str-tool: str-util.o generic.h generic.o fileutils.o fileutils.h cdutils.o cdutils.h yazedc.o yazedc.h Makefile ${CXX} ${LDFLAGS} str-util.o generic.o fileutils.o cdutils.o yazedc.o psxdev/bs.o psxdev/idctfst.o psxdev/jfdctint.o psxdev/vlc.o psxdev/xadecode.o -o str-tool -lSDL +crypto-search: crypto-search.o generic.h generic.o fileutils.o fileutils.h Makefile + ${CXX} ${LDFLAGS} crypto-search.o generic.o fileutils.o -o crypto-search + clean: for d in ${SUBDIRS} ; do make -C $$d clean || exit -1 ; done rm -f *.o ${TARGET} compil.c |