diff options
author | pixel <pixel> | 2002-11-18 00:22:21 +0000 |
---|---|---|
committer | pixel <pixel> | 2002-11-18 00:22:21 +0000 |
commit | 4cbd4b4b5331948d9cdc44292b7870bcfc5218bd (patch) | |
tree | 11a7fac64cf76f8ca5190de92ca494c4f4ee74a4 /ToD/Makefile | |
parent | 718ca1d8dda36c276bd5ca5b6f0a833f61f9e5d5 (diff) |
Whoops...
Diffstat (limited to 'ToD/Makefile')
-rwxr-xr-x | ToD/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
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 + |