diff options
author | Camil Staps | 2016-08-25 19:50:29 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 19:50:29 +0200 |
commit | e1eb560bf618838f8c09c89391092b77657ec8a7 (patch) | |
tree | 90d140309f3b1b77e4f127ea8d1d8631c1ade26e /compiler/Makefile | |
parent | Use perror (diff) |
Remove unnecessary includes
Diffstat (limited to 'compiler/Makefile')
-rw-r--r-- | compiler/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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 |