From 4cbd4b4b5331948d9cdc44292b7870bcfc5218bd Mon Sep 17 00:00:00 2001 From: pixel Date: Mon, 18 Nov 2002 00:22:21 +0000 Subject: Whoops... --- ToD/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 ToD/Makefile (limited to 'ToD/Makefile') diff --git a/ToD/Makefile b/ToD/Makefile new file mode 100755 index 0000000..12f5a46 --- /dev/null +++ b/ToD/Makefile @@ -0,0 +1,17 @@ +#!/usr/bin/make -f + +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes +CXX=g++ +LIBS=-lz +LDFLAGS=${LIBS} + +TARGET = c_dumper + +all: ${TARGET} + +c_dumper: c_dumper.o ../includes/generic.h Makefile + ${CXX} ${LDFLAGS} c_dumper.o ../generic/generic.a -o unarc + +clean: + rm -f *.o ${TARGET} compil.c + -- cgit v1.2.3