shithub: mc

ref: 674df8f71072a8ee390e55e2659e9559d6acf4b1
dir: /mk/lexyacc.mk/

View raw version
NECFLAGS = $(subst -Werror,,$(subst -Wall,,$(CFLAGS)))

%.o: %.y
	yacc -dt -o$*.c $<
	$(CC) -c $(NECFLAGS) $*.c

%.o: %.l
	flex -o$*.c $<
	$(CC) -c $(NECFLAGS) $*.c