blob: 5a0edcd6f0a3b55ff768becd94414b1736589035 (
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 `baltisot-config --cflags`
CXX=g++
LIBS=-lz
LDFLAGS=${LIBS} `baltisot-config --libs`
TARGET = c_dumper
all: ${TARGET}
c_dumper: c_dumper.o Makefile
	${CXX} ${LDFLAGS} c_dumper.o -o c_dumper
clean:
	rm -f *.o ${TARGET} compil.c
 |