pebblisp/src/Makefile

21 lines
400 B
Makefile
Raw Normal View History

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