diff options
Diffstat (limited to 'lib/Makefile')
-rwxr-xr-x | lib/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100755 index 0000000..5503701 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,11 @@ +#!/usr/bin/make -f + +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes +CXX=g++ + +TARGET = cdutils.o dteutils.o fileutils.o generic.o lzss.o yazedc.o + +all: ${TARGET} + +clean: + rm -f *.o ${TARGET} compil.c |