1 2 3 4 5 6 7 8 9 10 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