aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-13 16:50:20 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-13 16:50:20 -0400
commit6541135026dc0cc2486bf53fdedd618d32b1b561 (patch)
tree0be9303e24b7c7df07f2e23f79d789d933cbfd9d /Makefile
parenta05402678ac7bc8cc8a545212cdf4caede49be1b (diff)
downloadrunes-6541135026dc0cc2486bf53fdedd618d32b1b561.tar.gz
runes-6541135026dc0cc2486bf53fdedd618d32b1b561.zip
fix undeclared warnings in the parser
the ones in yy_fatal_error, yyalloc, yyrealloc, and yyfree are due to a bug in flex (http://sourceforge.net/p/flex/bugs/115/), but i've just worked around them for now
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 0 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 889371c..2b83c52 100644
--- a/Makefile
+++ b/Makefile
@@ -11,9 +11,6 @@ build: $(OUT)
$(OUT): $(OBJ)
$(CC) $(shell pkg-config --libs $(LIBS)) $(LDFLAGS) -o $@ $^
-parser.o: parser.c
- $(CC) $(shell pkg-config --cflags $(LIBS)) $(CFLAGS) -Wno-unused-parameter -Wno-unused-function -Wno-unused-variable -Wno-unused-value -c -o $@ $^
-
%.o: %.c
$(CC) $(shell pkg-config --cflags $(LIBS)) $(CFLAGS) -c -o $@ $^