shithub: mc

ref: 0f956d6bb55e0455326f4627024c1fa8c8adbff8
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 $<