blob: 7107501b7240ea82d7e51708b233d553f0e00ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/make -f
CPPFLAGS=-Wall -g -O3 -mcpu=i686 -pedantic -pedantic-errors -I../includes -DPARANOID_SEEK -DHAVE_ZLIB `pkg-config --cflags glib-2.0`
CXX=g++
CC=gcc
OBJECTS = Buffer.o Exceptions.o Handle.o Image.o Input.o Output.o generic.o String.o checkargs.o datecalc.o
TARGET = generic.a
all: ${TARGET} Makefile
generic.a: ${OBJECTS}
ar -r generic.a ${OBJECTS}
ranlib generic.a
clean:
rm -f *.o *.a ${TARGET} compil.c
|