shithub: mc

ref: 02fa3c02b2bf6f5b7e8473fcb3d8e0140ce9c17e
dir: /mk/lexyacc.mk/

View raw version
.SUFFIXES:

NECFLAGS = $(subst -Werror,,$(subst -Wall,,$(CFLAGS)))

%.h %.c: %.y
	yacc -d -o$*.c $<

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