shithub: mc

ref: 93c80509bd8997bef851dacbd6399f3fa6554518
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 $<