summaryrefslogtreecommitdiff
path: root/ToD/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ToD/Makefile')
-rwxr-xr-xToD/Makefile17
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
+