blob: 831126c145305d98c78645ffae826fce92c208c9 (
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 -Werror -I../includes
CXX=g++
LIBS=-lz
LDFLAGS=${LIBS}
TARGET = unarc
all: ${TARGET}
unarc: unarc.o ../includes/generic.h Makefile
${CXX} ${LDFLAGS} unarc.o ../generic/generic.a -o unarc
clean:
rm -f *.o ${TARGET} compil.c
|