added Makefile for the interpreter

This commit is contained in:
Daniel Knüttel 2018-10-27 16:52:13 +02:00
parent e0ed86e203
commit 8d894333a2
1 changed files with 1 additions and 1 deletions

View File

@ -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) $@ $<