#!/usr/bin/make -f CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -Werror -I../includes CXX=g++ OBJECTS = cdutils.o dteutils.o lzss.o yazedc.o TARGET = lib.a all: ${TARGET} lib.a: ${OBJECTS} ar -r lib.a ${OBJECTS} ranlib lib.a clean: rm -f *.o ${TARGET} compil.c