diff options
author | Camil Staps | 2016-08-25 20:29:50 +0200 |
---|---|---|
committer | Camil Staps | 2016-08-25 20:29:50 +0200 |
commit | 821939c6a6eb5761708146783ebd562422c2a7f7 (patch) | |
tree | dd26b29c65431801f4ca45d6952b7806534f9c8c /compiler/Makefile | |
parent | Remove unnecessary includes (diff) |
pedantic
Diffstat (limited to 'compiler/Makefile')
-rw-r--r-- | compiler/Makefile | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/compiler/Makefile b/compiler/Makefile deleted file mode 100644 index a8cd4a1..0000000 --- a/compiler/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -CFLAGS=-Wall -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 -EXE=fuspelc - -.PHONY: all clean - -all: $(EXE) - -$(EXE): $(OBJ) - $(CC) -o $@ $^ $(CFLAGS) - -%.o: %.c $(DEPS) - $(CC) -c -o $@ $< $(CFLAGS) - -clean: - $(RM) -v $(OBJ) $(EXE) |