summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPixel <Pixel>2002-06-23 15:47:03 +0000
committerPixel <Pixel>2002-06-23 15:47:03 +0000
commitab0afb77b2a0bb9d5dd3eb27ea98c6f9f4e938c2 (patch)
treeee8f98b59c54cdfe1a7cc58094023993f1f1dc35 /Makefile
parentb3c377e647b5eb14c2ed0ff27db4ac14a3fd4e2d (diff)
fixed u_* types for Windows.
Diffstat (limited to 'Makefile')
-rwxr-xr-xMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index cd471e4..19ce4e8 100755
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,7 @@ TARGET = lzss dlzss cd-tool str-tool
all: subdirs ${TARGET}
subdirs:
- for d in ${SUBDIRS} ; do make -C $$d ; done
+ for d in ${SUBDIRS} ; do make -C $$d || exit -1 ; done
lzss: lzss.o lzss.h generic.o generic.h fileutils.h fileutils.o lzss-main.o Makefile
${CXX} ${LDFLAGS} -DLZSS_MAIN lzss.o generic.o fileutils.o lzss-main.o -o lzss
@@ -30,6 +30,6 @@ str-tool: str-util.o generic.h generic.o fileutils.o fileutils.h cdutils.o cduti
${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 -o str-tool -lSDL
clean:
- for d in ${SUBDIRS} ; do make -C $$d clean ; done
+ for d in ${SUBDIRS} ; do make -C $$d clean || exit -1 ; done
rm -f *.o ${TARGET} compil.c