#!/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 generic.o fileutils.o String.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