shithub: mc

ref: d52fd3b32109f12e529a7f5e380c5ee8f06aefcf
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 $<