blob: 22e5af1079d28c9f856c791cae953af07448aa39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
SDL = -L/usr/lib -lSDL2
default:
gcc src/main.c $(SDL) -o main
interpreter:
rm interpreter
gcc src/interpreter.c -o interpreter
interpreter-illegal:
gcc src/interpreter.c -o interpreter -D ILLEGAL
|