diff options
author | Pixel <Pixel> | 2002-07-22 13:04:29 +0000 |
---|---|---|
committer | Pixel <Pixel> | 2002-07-22 13:04:29 +0000 |
commit | 4a54a9ddca7821eb479fd3eff2fd08a2a0b979e2 (patch) | |
tree | 8c0f3d4f894a9e3886747202990087d9254a0a32 | |
parent | cbee971a2e8929924f63535d174637106620eae3 (diff) |
oups...
-rwxr-xr-x | generic/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/generic/Makefile b/generic/Makefile new file mode 100755 index 0000000..dc47586 --- /dev/null +++ b/generic/Makefile @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -I../includes +CXX=g++ + +OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Output.o String.o generic.o fileutils.o +TARGET = generic.a + +all: ${TARGET} + +generic.a: ${OBJECTS} + ar -r generic.a ${OBJECTS} + ranlib generic.a + +clean: + rm -f *.o *.a ${TARGET} compil.c |