Home | History | Annotate | Line # | Download | only in config
Makefile revision 1.6
      1  1.6      cube #	$NetBSD: Makefile,v 1.6 2007/01/08 16:08:08 cube Exp $
      2  1.1   thorpej #	from: @(#)Makefile	8.2 (Berkeley) 4/19/94
      3  1.1   thorpej 
      4  1.1   thorpej PROG=	config
      5  1.6      cube SRCS=	files.c gram.y hash.c lint.c main.c mkdevsw.c mkheaders.c mkioconf.c \
      6  1.1   thorpej 	mkmakefile.c mkswap.c pack.c scan.l sem.c util.c
      7  1.1   thorpej MAN=	config.1
      8  1.3      cube MAN+=	config.5 config.samples.5
      9  1.1   thorpej YHEADER=1
     10  1.1   thorpej CPPFLAGS+=-I${.CURDIR} -I.
     11  1.1   thorpej 
     12  1.5  christos .ifndef HOSTPROG
     13  1.4  christos LDADD+=-lutil
     14  1.4  christos DPADD+=${LIBUTIL}
     15  1.5  christos .endif
     16  1.4  christos 
     17  1.1   thorpej CWARNFLAGS+=-Wno-format-y2k
     18  1.1   thorpej 
     19  1.1   thorpej .include <bsd.prog.mk>
     20