pebblisp/src/Makefile

18 lines
339 B
Makefile
Raw Normal View History

2020-05-15 16:27:45 -04:00
files = pebblisp.c tokens.c object.c env.c
exe = pebblisp
2020-05-15 16:27:45 -04:00
all:
gcc -g -O0 -o $(exe) -D STANDALONE $(files) && ./tests.sh
2020-05-15 16:27:45 -04:00
notest:
gcc -g -O0 -o $(exe) -D STANDALONE $(files)
val:
gcc -g -O0 -o $(exe) -D STANDALONE $(files) && ./tests.sh -val
debug:
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:
./$(exe)