From 84ca38924ecb3ab4c571eedc456959639d38891e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Kn=C3=BCttel?= Date: Sat, 27 Oct 2018 16:52:13 +0200 Subject: [PATCH] added Makefile for the interpreter --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 89e3480..07d3c87 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ objects= stack.o method_dispatcher/method_dispatcher.o interpreter/core_methods. all: $(objects) test -CFLAG= -c -O -o +CFLAG= -c -DDEBUG -O -o %.o: %.c $(CC) $(CFLAG) $@ $<