diff options
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 |