pebblisp/src/Makefile

17 lines
334 B
Makefile
Raw Normal View History

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