18 lines
429 B
Makefile
18 lines
429 B
Makefile
# $NetBSD: Makefile,v 1.19 1998/04/09 00:32:39 tv Exp $
|
|
# from: @(#)Makefile 8.2 (Berkeley) 4/19/94
|
|
|
|
PROG= config
|
|
BINDIR= /usr/sbin
|
|
SRCS= files.c gram.y hash.c main.c mkheaders.c mkioconf.c mkmakefile.c \
|
|
mkswap.c pack.c scan.l sem.c util.c
|
|
YHEADER=1
|
|
CPPFLAGS+=-I${.CURDIR} -I.
|
|
|
|
# This program actually requires "flex" (not just any old lex).
|
|
# Also note that it does not use -ll
|
|
LEX=flex
|
|
|
|
MAN= config.8
|
|
|
|
.include <bsd.prog.mk>
|