From 6616cadbd5587e467bef9792f01b6edb35b4fa5c Mon Sep 17 00:00:00 2001 From: = <=> Date: Wed, 6 May 2020 05:51:19 +0100 Subject: [PATCH] Name the executable from the makefile --- src/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Makefile b/src/Makefile index b333dd1..4437453 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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