shithub: mc

ref: a4fdef8a867263627510ea20e9b4a758549f7c98
dir: /mk/lexyacc.mk/

View raw version
.SUFFIXES:

%.h %.c: %.y
	rm -f $*.h y.tab.h
	yacc -d -o$*.c $<
	[ -f y.tab.h ] && mv y.tab.h $*.h || [ -f $*.h ]

%.c: %.l
	flex -o$*.c $<