From 00e2c70b01f28c9b00ec3d5096895a387676774d Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Fri, 26 Aug 2016 00:46:55 +0200 Subject: Linking C functions --- interpreter/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'interpreter/Makefile') diff --git a/interpreter/Makefile b/interpreter/Makefile index 5288c88..25c28ee 100644 --- a/interpreter/Makefile +++ b/interpreter/Makefile @@ -1,7 +1,7 @@ -CFLAGS=-Wall -Wextra -Werror -Wpedantic -s +CFLAGS=-Wall -Wextra -Werror -s -DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h -OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o +DEPS=lex.h syntax.h print.h parse.h log.h eval.h mem.h code.h +OBJ=fuspelc.o lex.o syntax.o print.o parse.o log.o eval.o mem.o code.o EXE=fuspelc .PHONY: all clean -- cgit v1.2.3