Skip to content
Snippets Groups Projects
Commit e6895abe authored by benjamin.franksen's avatar benjamin.franksen
Browse files

fixed a stupid error in snc Makefile

parent 30cffaa5
No related branches found
No related tags found
No related merge requests found
......@@ -50,8 +50,8 @@ snl.c: snl.lem snl.lt $(LEMON)
$(RM) snl.c snl.h
$(LEMON) o=. $<
snl.h: snl.c
# empty recipy needed to work around make bug #35455
# empty recipy needed to work around make bug #35455
snl.h: snl.c ;
vpath %.re ..
......@@ -59,7 +59,7 @@ lexer.c: snl.re
$(RE2C) -s -b -o $@ $<
# work around bug in base rules
lexer.o: snl.h
lexer$(OBJ): snl.h
$(COMMON_DIR)/snl.bnf: snl.lem
$(RM) $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment