pebblisp/src/Makefile

6 lines
156 B
Makefile
Raw Normal View History

all:
2020-05-06 00:51:19 -04:00
gcc -g -O0 -o pebblisp -D STANDALONE pebblisp.c tokens.c object.c
debug:
2020-05-06 00:51:19 -04:00
gcc -g -O0 -o pebblisp -D STANDALONE -D DEBUG pebblisp.c tokens.c object.c