blob: 12f5a464b128d5baf43063cd674b1e66b06aeed5 (
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 = c_dumper
all: ${TARGET}
c_dumper: c_dumper.o ../includes/generic.h Makefile
${CXX} ${LDFLAGS} c_dumper.o ../generic/generic.a -o unarc
clean:
rm -f *.o ${TARGET} compil.c
|