From 4a54a9ddca7821eb479fd3eff2fd08a2a0b979e2 Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 22 Jul 2002 13:04:29 +0000 Subject: oups... --- generic/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 generic/Makefile (limited to 'generic') 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 -- cgit v1.2.3