From e1eb560bf618838f8c09c89391092b77657ec8a7 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Thu, 25 Aug 2016 19:50:29 +0200 Subject: Remove unnecessary includes --- compiler/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/Makefile') diff --git a/compiler/Makefile b/compiler/Makefile index ef54249..a8cd4a1 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -4,6 +4,8 @@ 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 EXE=fuspelc +.PHONY: all clean + all: $(EXE) $(EXE): $(OBJ) @@ -14,5 +16,3 @@ $(EXE): $(OBJ) clean: $(RM) -v $(OBJ) $(EXE) - -.PHONY: all clean -- cgit v1.2.3