blob: 98317b8b826056eab3d71ad1b9496d90341d2cf4 (
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 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
|