From ec2c97793151512f5dca3290dbd9f24a09b7ac6f Mon Sep 17 00:00:00 2001 From: pixel Date: Wed, 19 Feb 2003 21:28:54 +0000 Subject: Yay to Tales of Fates... ^^; --- ToF/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 ToF/Makefile (limited to 'ToF/Makefile') diff --git a/ToF/Makefile b/ToF/Makefile new file mode 100755 index 0000000..6d644ed --- /dev/null +++ b/ToF/Makefile @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes -DHAVE_ZLIB +CXX=g++ + +LIBS=-lz +LDFLAGS=${LIBS} + +TARGET = main_dump ToF.sqr + +all: ${TARGET} + +main_dump: main_dump.o ../includes/cdutils.h ../includes/generic.h ../lib/lib.a ../generic/generic.a Makefile + ${CXX} ${LDFLAGS} main_dump.o ../lib/lib.a ../generic/generic.a -o main_dump + +clean: + rm -f *.o ${TARGET} + +ToF.sqr: ToF.map Makefile + ./map2sqr < $< > $@ + +.map.sqr: + ./map2sqr < $< > $@ + +redo: clean all -- cgit v1.2.3