summaryrefslogtreecommitdiff
path: root/generic/Makefile
blob: dc47586e3d877b02bce9d2ee9ed6a996cd365f1e (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
CXX=g++

OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Output.o String.o generic.o fileutils.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