24 lines
479 B
Makefile
24 lines
479 B
Makefile
files = pebblisp.c tokens.c object.c env.c
|
|
exe = pebblisp
|
|
|
|
all:
|
|
gcc -g -O0 -Wall -o $(exe) -D STANDALONE $(files) && ./tests.sh
|
|
|
|
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)
|
|
|
|
run:
|
|
./$(exe)
|
|
|
|
install:
|
|
cp ./$(exe) /usr/bin/pl
|
|
mkdir -p /usr/share/pebblisp/
|
|
rm /usr/share/pebblisp/*
|
|
cp ./examples/* /usr/share/pebblisp/
|