blob: 24c068e801530149c32d7077fe5ee7a8a5825475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make -f
CPPFLAGS=-Wall -g -O3 -mcpu=i686 -Werror -I../includes -DHAVE_ZLIB -DUSE_CDREADER -DDEBUG
CXX=g++
OBJECTS = cdutils.o lzss.o yazedc.o dteutils.o cdreader.o cdabstract.o
TARGET = lib.a
all: ${TARGET}
lib.a: ${OBJECTS}
ar -r lib.a ${OBJECTS}
ranlib lib.a
clean:
rm -f *.o ${TARGET} compil.c
|