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

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

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

db:
	gdb sonsi

cdb:
	cgdb sonsi

run:
	./sonsi