blob: eb40f0d1a36c1437d62abdca3409e82536e962a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
TOP=..
include $(TOP)/mk/boilerplate.mk
C_SRCS = verbatim.c
C_PROG = verbatim
LIBS = $(FLEX_LIB)
override SRC_FLEX_OPTS=-8
#
# For src distributions, include flex output.
#
SRC_DIST_FILES += verbatim.c
CLEAN_FILES += verbatim.c
include $(TOP)/mk/target.mk
|