summaryrefslogtreecommitdiff
path: root/makefile
blob: 84c901e5d272d78e95399460ed20b250197212bd (plain)
1
2
3
4
5
6
7
8
9
10
11
SDL = -L/usr/lib -lSDL2

default:
	gcc src/main.c $(SDL) -DGRAPHICAL -o main 

interpreter:
	rm interpreter
	gcc src/interpreter.c -o interpreter

interpreter-illegal:
	gcc src/interpreter.c -o interpreter -D ILLEGAL