Compiles, but has errors, needs sane refactoring!

This commit is contained in:
xolatile
2024-07-07 13:32:04 -04:00
parent b65e32bb0e
commit 3e1553b87b
5 changed files with 114 additions and 9 deletions

View File

@ -48,7 +48,8 @@ ${OBJECT.d}/%.yy.c: ${SOURCE.d}/%.l
flex ${FLEXFLAGS} --header-file=object/$(basename $(notdir $<)).yy.h -o $@ $<
${OBJECT.d}/%.tab.c: ${SOURCE.d}/%.y
bison ${BISONFLAGS} --header=object/$(basename $(notdir $<)).tab.h -o $@ $<
#~ bison ${BISONFLAGS} --header=object/$(basename $(notdir $<)).tab.h -o $@ $<
bison ${BISONFLAGS} --defines=object/$(basename $(notdir $<)).tab.h -o $@ $<
${OBJECT.d}/%.yy.o: ${OBJECT.d}/%.yy.c
${COMPILE.c} -o $@ $<