aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: aeab6a086380a430d63457451c197f970acf7b9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
sonsi: main.o parser.o builtin.o model.o eval.o exc.o consts.o types.o
	g++ -o sonsi $^ -pg -lgmp

.cpp.o:
	g++ $< -c -g -pg -DGMP_SUPPORT -Wall -O2

clean:
	rm -f *.o
	rm -f sonsi

db:
	gdb sonsi

cdb:
	cgdb sonsi