diff options
author | Pixel <Pixel> | 2002-07-19 12:52:47 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-07-19 12:52:47 +0000 |
commit | 492ca575941d0e30b3725bf7a9966cab8df7e238 (patch) | |
tree | 5cd34563c530988291691bd0a2a671e1a416b0e2 /lib/Makefile | |
parent | 2d5f7c1052fb4206cc46fffe236ebfcac4ee316f (diff) |
Moved everything in the right place. Cleaner now.
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 |