2020-05-15 16:27:45 -04:00
|
|
|
files = pebblisp.c tokens.c object.c env.c
|
2020-05-19 20:37:15 -04:00
|
|
|
exe = pebblisp
|
2020-05-15 16:27:45 -04:00
|
|
|
|
2020-05-06 00:47:14 -04:00
|
|
|
all:
|
2020-05-19 20:37:15 -04:00
|
|
|
gcc -g -O0 -o $(exe) -D STANDALONE $(files) && ./tests.sh
|
2020-05-15 16:27:45 -04:00
|
|
|
|
|
|
|
notest:
|
2020-05-19 20:37:15 -04:00
|
|
|
gcc -g -O0 -o $(exe) -D STANDALONE $(files)
|
2020-05-06 00:47:14 -04:00
|
|
|
|
2020-05-14 23:50:53 -04:00
|
|
|
val:
|
2020-05-19 20:37:15 -04:00
|
|
|
gcc -g -O0 -o $(exe) -D STANDALONE $(files) && ./tests.sh -val
|
2020-05-14 23:50:53 -04:00
|
|
|
|
2020-05-06 00:47:14 -04:00
|
|
|
debug:
|
2020-05-19 20:37:15 -04:00
|
|
|
gcc -g -O0 -o $(exe) -D STANDALONE -D DEBUG $(files) && ./tests.sh
|
2020-05-07 20:32:01 -04:00
|
|
|
|
2020-05-08 02:29:06 -04:00
|
|
|
run:
|
2020-05-19 20:37:15 -04:00
|
|
|
./$(exe)
|