blob: e0e9f27ba5bd5379a3eecaf6413780498444daa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# $NetBSD: Makefile,v 1.9 2009/10/30 00:30:20 christos Exp $
HOSTPROGNAME= ${_TOOL_PREFIX}lex
HOST_SRCDIR= external/bsd/flex/bin
.include "${.CURDIR}/../Makefile.host"
HOST_CPPFLAGS+= -DM4=\"${TOOL_M4}\"
.y.c .l.c .y.h:
@true
scan.c:
echo '#include <initscan.c>' >$@
parse.c:
echo '#include <initparse.c>' >$@
parse.h:
echo '#include <initparse.h>' >$@
scan.c: parse.h
CLEANFILES+=scan.c parse.c parse.h
|