summaryrefslogtreecommitdiff
path: root/generic/Makefile
blob: 8bc6a49c40b62472d4ae35f2caf009945a29622c (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 -pedantic -pedantic-errors -I../includes -DPARANOID_SEEK -DHAVE_ZLIB
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