shithub: mc

ref: 81f4aba2c5d9deec72312b0398209fcdb8439583
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 $<