blob: fafd7acf88fc2fd7b6416e5eca54fe6a2b9ee784 (
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 c_dumper
clean:
rm -f *.o ${TARGET} compil.c
|