Name the executable from the makefile

This commit is contained in:
= 2020-05-06 05:51:19 +01:00
parent 42c9f24f85
commit 6616cadbd5
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
all:
gcc -g -O0 -D STANDALONE pebblisp.c tokens.c object.c
gcc -g -O0 -o pebblisp -D STANDALONE pebblisp.c tokens.c object.c
debug:
gcc -g -O0 -D STANDALONE -D DEBUG pebblisp.c tokens.c object.c
gcc -g -O0 -o pebblisp -D STANDALONE -D DEBUG pebblisp.c tokens.c object.c