aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 0530b06..b034809 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,6 @@
exec = halk.out
-sources = $(wildcard src/*.c)
+sources := $(wildcard src/*.c)
+sources := $(filter-out src/parser.c, $(sources)) # exclude the incomplete parser for now.
objects = $(sources:.c=.o)
flags = -g