Set NOxxx= before <bsd.own.mk> is pulled in (even indirectly).
Otherwise the appropriate MKxxx=no won't be defined .
This commit is contained in:
parent
1fd357560b
commit
b0b0a32ad7
@ -1,4 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 01:49:03 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 12:24:19 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
.include "${.CURDIR}/../Makefile.inc"
|
||||
LIB= cvs
|
||||
@ -10,10 +14,6 @@ SRCS= argmatch.c dup2.c getdate.y getline.c getopt.c getopt1.c \
|
||||
md5.c regex.c savecwd.c sighandle.c stripslash.c xgetwd.c \
|
||||
yesno.c
|
||||
|
||||
NOLINT= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
# only needed during build
|
||||
libinstall::
|
||||
|
||||
|
@ -1,11 +1,12 @@
|
||||
# $NetBSD: Makefile.cc1,v 1.14 2001/12/12 01:49:03 tv Exp $
|
||||
# $NetBSD: Makefile.cc1,v 1.15 2001/12/12 12:24:20 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
C_OBJC_SRCS= c-lex.c c-pragma.c c-decl.c c-typeck.c c-convert.c \
|
||||
c-aux-info.c c-common.c c-iterate.c
|
||||
BINDIR= /usr/libexec
|
||||
NOMAN= # defined
|
||||
|
||||
LDADD+= ${COMMONOBJ}/libcc1.a
|
||||
DPADD+= ${COMMONOBJ}/libcc1.a
|
||||
|
@ -1,10 +1,11 @@
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 01:49:02 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 12:24:20 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
PROG= cpp0
|
||||
SRCS= ${G_CCCP_OBJS:.o=.c}
|
||||
NOMAN= # defined
|
||||
|
||||
CPPFLAGS+= -I${GCCARCH} \
|
||||
${G_ALL_CFLAGS:M-D*} ${G_INCLUDES:M-I*:N-I.*} \
|
||||
|
@ -1,4 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:49:04 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:20 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -7,10 +11,6 @@ SRCS= basename.c error.c fstrcmp.c getline.c getopt.c getopt1.c hash.c \
|
||||
obstack.c printf-prs.c stpcpy.c stpncpy.c xgetcwd.c xmalloc.c \
|
||||
xstrdup.c
|
||||
|
||||
NOPIC=# defined
|
||||
NOPROFILE=# defined
|
||||
NOLINT=# defined
|
||||
|
||||
.include "${.CURDIR}/../Makefile.inc"
|
||||
|
||||
.PATH: ${DIST}/gettext/lib
|
||||
|
@ -1,9 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.18 2001/12/12 01:49:06 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.19 2001/12/12 12:24:20 lukem Exp $
|
||||
|
||||
# Define FSYNC_ALL to get slower but safer writes in case of crashes in
|
||||
# the middle of CVS/RCS changes
|
||||
CPPFLAGS+=-DFSYNC_ALL
|
||||
|
||||
NOLINT= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
.include <bsd.own.mk> # for RCS_LOCALID
|
||||
|
||||
# If you wish to use a different Id token in addition to Id,
|
||||
@ -17,10 +21,6 @@ SRCS= maketime.c merger.c partime.c rcsedit.c rcsfcmp.c rcsfnms.c rcsgen.c \
|
||||
rcskeep.c rcskeys.c rcslex.c rcsmap.c rcsrev.c rcssyn.c rcstime.c \
|
||||
rcsutil.c version.c
|
||||
|
||||
NOLINT= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE=# defined
|
||||
|
||||
# only needed during build
|
||||
libinstall::
|
||||
|
||||
|
@ -1,4 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:49:14 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:20 lukem Exp $
|
||||
|
||||
NOSHARE= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -10,9 +14,6 @@ LIB= smdb
|
||||
CPPFLAGS+= -DNOT_SENDMAIL
|
||||
|
||||
SRCS= smdb.c smdb1.c smdb2.c smndbm.c
|
||||
NOSHARE= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
libinstall::
|
||||
|
||||
|
@ -1,4 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 01:49:14 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 12:24:21 lukem Exp $
|
||||
|
||||
NOSHARE= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -10,9 +14,6 @@ LIB= smutil
|
||||
CPPFLAGS+= -DNOT_SENDMAIL
|
||||
|
||||
SRCS= debug.c errstring.c lockfile.c safefile.c snprintf.c
|
||||
NOSHARE= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
libinstall::
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.7 2001/12/12 01:49:15 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 12:24:21 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,6 +8,5 @@
|
||||
FILES= amd.conf cd net
|
||||
FILESDIR=/usr/share/examples/amd
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:49:15 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:21 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,6 +8,5 @@
|
||||
FILES= script
|
||||
FILESDIR=/usr/share/examples/apm
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 01:49:15 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 12:24:21 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,6 +8,5 @@
|
||||
FILES= SVR4_MAKEDEV netconfig nsswitch.conf
|
||||
FILESDIR=/usr/share/examples/emul/svr4/etc
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 01:49:15 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 12:24:21 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,6 +8,5 @@
|
||||
FILES= svc.conf
|
||||
FILESDIR=/usr/share/examples/emul/ultrix/etc
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 01:49:16 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2001/12/12 12:24:22 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,6 +8,5 @@
|
||||
FILES= ftpd.conf ftpusers
|
||||
FILESDIR=/usr/share/examples/ftpd
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:49:16 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:22 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -7,6 +9,5 @@ FILES= holidays.D.SH isdnd.rates.A isdnd.rates.D isdnd.rates.F \
|
||||
isdnd.rates.L isdnd.rates.UK.BT isdnd.rc.sample
|
||||
FILESDIR=/usr/share/examples/isdn
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 01:49:16 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 12:24:22 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -7,6 +9,5 @@ FILES= sup.au.netbsd.org sup.jp.netbsd.org \
|
||||
sup.netbsd.org sup2.fr.netbsd.org
|
||||
FILESDIR=/usr/share/examples/supfiles
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:49:16 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:22 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,6 +8,5 @@
|
||||
FILES= all.debug
|
||||
FILESDIR=/usr/share/examples/syslogd
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 01:49:17 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2001/12/12 12:24:22 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
# pull LOCALEDIR and other declarations
|
||||
.include <bsd.own.mk>
|
||||
@ -7,8 +9,6 @@ FILESOWN= ${LOCALEOWN}
|
||||
FILESGRP= ${LOCALEGRP}
|
||||
FILESMODE= ${LOCALEMODE}
|
||||
|
||||
NOMAN=# defined
|
||||
|
||||
LOCALES += da_DK.ISO8859-1
|
||||
LOCALESRC_da_DK.ISO8859-1 = en_US.ISO_8859-1
|
||||
ALIASES_da_DK.ISO8859-1+=
|
||||
|
@ -1,5 +1,7 @@
|
||||
# from: @(#)Makefile 5.9 (Berkeley) 7/1/91
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 01:49:17 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 12:24:23 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -7,7 +9,6 @@
|
||||
FILES= makewhatis.sed COPYRIGHT
|
||||
FILESDIR= /usr/share/man
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
CLEANFILES+= man?
|
||||
CLEANFILES+= man?pages.tmp
|
||||
|
@ -1,6 +1,8 @@
|
||||
# $NetBSD: Makefile,v 1.31 2001/12/12 01:49:17 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.32 2001/12/12 12:24:23 lukem Exp $
|
||||
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
.if ${MKSHARE} != "no"
|
||||
@ -11,7 +13,6 @@ FILES= bsd.README bsd.doc.mk bsd.dep.mk bsd.files.mk bsd.hostprog.mk \
|
||||
|
||||
FILESDIR=/usr/share/mk
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
FILESMODE=444
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.26 2001/12/12 01:49:33 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.27 2001/12/12 12:24:23 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
NOOBJ=# defined
|
||||
|
||||
# Change the line below for your time zone (after finding the zone you want in
|
||||
# the time zone files, or adding it to a time zone file).
|
||||
# Alternately, if you discover you've got the wrong time zone, you can just
|
||||
|
@ -1,11 +1,11 @@
|
||||
# $NetBSD: Makefile.inc,v 1.17 2001/12/12 01:49:33 tv Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.18 2001/12/12 12:24:23 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
BINDIR?= /usr/mdec
|
||||
WARNS?= 1
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
CPPFLAGS+= -I${.CURDIR}/../..
|
||||
LDSTATIC?= -static
|
||||
|
@ -1,11 +1,12 @@
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 01:49:38 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.12 2001/12/12 12:24:23 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
# for OBJECT_FMT
|
||||
.include <bsd.own.mk>
|
||||
|
||||
PROG= bootxx
|
||||
SRCS= bootxx.c filesystem.c
|
||||
NOMAN= # defined
|
||||
|
||||
STRIPFLAG=
|
||||
BINDIR= /usr/mdec
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 01:49:41 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 12:24:24 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
# for OBJECT_FMT
|
||||
.include <bsd.own.mk>
|
||||
@ -8,7 +10,6 @@ PROG= boot.atari
|
||||
# Warning: bootxxx.c should be the first source!
|
||||
#
|
||||
SRCS= bootxxx.c aout.c bsdstart.s elf.c filesystem.c sysinfo.c
|
||||
NOMAN= # defined
|
||||
|
||||
STRIPFLAG=
|
||||
BINDIR= /usr/mdec
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.21 2001/12/12 01:49:44 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.22 2001/12/12 12:24:24 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
# XXX: bsd.own.mk included so LDSTATIC can be overwridden
|
||||
.include <bsd.own.mk>
|
||||
@ -12,8 +14,6 @@ LIBSA=${.CURDIR}/../../../../lib/libsa
|
||||
SRCS= installboot.c bootblks.c getmount.c byteorder.c loadfile.c \
|
||||
loadfile_aout.c loadfile_elf32.c
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
CPPFLAGS+= -I${.CURDIR}/../lib/crt/bootsect
|
||||
CPPFLAGS+= -I${LIBSA} -I.
|
||||
CFLAGS+= -Wall -Wmissing-prototypes -Wstrict-prototypes
|
||||
|
@ -1,11 +1,12 @@
|
||||
# $NetBSD: Makefile.inc,v 1.2 2001/12/12 01:50:01 tv Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.3 2001/12/12 12:24:24 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
BINDIR?= /usr/mdec
|
||||
|
||||
WARNS?= 1
|
||||
NOMAN= # defined
|
||||
|
||||
CPPFLAGS+= -I${.CURDIR}/../..
|
||||
LDSTATIC?= -static
|
||||
|
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 01:49:46 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 12:24:24 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
PROG= installboot
|
||||
NOMAN= # defined
|
||||
BINDIR=/usr/mdec
|
||||
LIBSA=${.CURDIR}/../../../../lib/libsa
|
||||
COPTS+= -Wall -Wstrict-prototypes -Wmissing-prototypes
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.12 2001/12/12 01:49:47 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.13 2001/12/12 12:24:24 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -10,7 +12,6 @@ COMMONOBJ!= cd ${COMMON} && ${PRINTOBJDIR}
|
||||
PROG= boot
|
||||
SRCS= locore.S boot.c devopen.c
|
||||
SRCS+= romcalls.S putchar.c
|
||||
NOMAN= # defined
|
||||
STRIPFLAG=
|
||||
BINMODE= 444
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 01:49:47 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 12:24:25 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -10,7 +12,6 @@ COMMONOBJ!= cd ${COMMON} && ${PRINTOBJDIR}
|
||||
PROG= bootxx
|
||||
SRCS= start.S bootxx.c
|
||||
SRCS+= romcalls.S putchar.c
|
||||
NOMAN= # defined
|
||||
STRIPFLAG=
|
||||
BINMODE= 444
|
||||
|
||||
|
@ -1,11 +1,12 @@
|
||||
# $NetBSD: Makefile.inc,v 1.14 2001/12/12 01:49:49 tv Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.15 2001/12/12 12:24:25 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
BINDIR?= /usr/mdec
|
||||
|
||||
WARNS?= 1
|
||||
NOMAN= # defined
|
||||
|
||||
CPPFLAGS+= -I${.CURDIR}/../..
|
||||
LDSTATIC?= -static
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.7 2001/12/12 01:49:50 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 12:24:25 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -33,7 +35,6 @@ CPPFLAGS+= -DCONS_SERIAL -DCOMSPEED=9600 -DCOMPORT=0x3f8
|
||||
.endif
|
||||
|
||||
OBJDUMP?= objdump
|
||||
NOMAN= # defined
|
||||
STRIPFLAG=
|
||||
BINMODE= 444
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.22 2001/12/12 01:49:52 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.23 2001/12/12 12:24:25 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -8,7 +10,6 @@ SRCS= installboot.c byteorder.c loadfile.c loadfile_aout.c loadfile_elf32.c
|
||||
|
||||
CPPFLAGS+=-DBOOT_AOUT -DBOOT_ELF32
|
||||
|
||||
NOMAN= # defined
|
||||
CFLAGS+=-g
|
||||
|
||||
LIBSA=${.CURDIR}/../../../../lib/libsa
|
||||
|
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.15 2001/12/12 01:49:52 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.16 2001/12/12 12:24:25 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
PROG= installboot
|
||||
NOMAN= # defined
|
||||
BINDIR=/usr/mdec
|
||||
S= ${.CURDIR}/../../../..
|
||||
LIBSA=${S}/lib/libsa
|
||||
|
@ -1,9 +1,10 @@
|
||||
# $NetBSD: Makefile,v 1.4 2001/12/12 01:50:02 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 12:24:26 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
PROG= installboot
|
||||
NOMAN= # defined
|
||||
BINDIR=/usr/mdec
|
||||
S= ${.CURDIR}/../../../..
|
||||
LIBSA=${S}/lib/libsa
|
||||
|
@ -1,11 +1,11 @@
|
||||
# $NetBSD: Makefile.inc,v 1.2 2001/12/12 01:49:55 tv Exp $
|
||||
# $NetBSD: Makefile.inc,v 1.3 2001/12/12 12:24:26 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
BINDIR?= /usr/mdec
|
||||
WARNS?= 1
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
CPPFLAGS+= -I${.CURDIR}/../..
|
||||
LDSTATIC?= -static
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.7 2001/12/12 01:49:57 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 12:24:26 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -13,7 +15,6 @@ TEXT= 006000
|
||||
PROG= boot
|
||||
BINDIR= /usr/mdec
|
||||
BINMODE= 444
|
||||
NOMAN= # defined
|
||||
STRIPFLAG=
|
||||
|
||||
BFDNAME= a.out-m68k-netbsd
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 01:49:58 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 12:24:26 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -17,7 +19,6 @@ LINKS+= ${BINDIR}/xx$(BOOT) ${BINDIR}/fd$(BOOT)
|
||||
BINDIR= /usr/mdec
|
||||
STRIPFLAG=
|
||||
BINMODE= 444
|
||||
NOMAN= # defined
|
||||
|
||||
S= ${.CURDIR}/../../../..
|
||||
M= $S/arch/${MACHINE}
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.7 2001/12/12 01:49:58 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 12:24:26 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -15,7 +17,6 @@ PROG= fd$(BOOT)
|
||||
BINDIR= /usr/mdec
|
||||
STRIPFLAG=
|
||||
BINMODE= 444
|
||||
NOMAN= # defined
|
||||
|
||||
S= ${.CURDIR}/../../../..
|
||||
M= $S/arch/x68k
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 01:48:44 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 12:24:27 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/lib/com_err
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= compile_et
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 01:48:44 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 12:24:27 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kuser
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kdestroy
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 01:48:45 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 12:24:27 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/appl/kf
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kf
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 01:48:45 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 12:24:27 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kuser
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kinit
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 01:48:45 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 12:24:28 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kuser
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= klist
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 01:48:45 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 12:24:28 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kpasswd
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kpasswd
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.14 2001/12/12 01:48:46 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2001/12/12 12:24:28 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -14,7 +16,6 @@ CPPFLAGS+=-I.
|
||||
WARNS= 1
|
||||
LDADD+= -lcurses -ltermcap
|
||||
DPADD+= ${LIBCURSES}
|
||||
NOMAN= # defined
|
||||
|
||||
CLEANFILES+= menu_defs.c menu_defs.h msg_defs.c msg_defs.h
|
||||
|
||||
|
@ -1,6 +1,7 @@
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 01:48:46 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 12:24:28 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -8,7 +9,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/lib/sl
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= mk_cmds
|
||||
|
||||
|
@ -1,9 +1,11 @@
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 01:48:46 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.12 2001/12/12 12:24:29 lukem Exp $
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
# RCSid:
|
||||
# $Id: Makefile,v 1.11 2001/12/12 01:48:46 tv Exp $
|
||||
# $Id: Makefile,v 1.12 2001/12/12 12:24:29 lukem Exp $
|
||||
#
|
||||
# @(#) Copyright (c) 1995 Simon J. Gerraty
|
||||
#
|
||||
@ -57,8 +59,6 @@ DPADD+= ${LIBSSL} ${LIBCRYPTO}
|
||||
LDADD+= -lcompat
|
||||
DPADD+= ${LIBCOMPAT}
|
||||
|
||||
NOMAN= # defined
|
||||
|
||||
CRYPTODIST= ${.CURDIR}/../../crypto/dist
|
||||
.include "../../crypto/Makefile.openssl"
|
||||
.PATH: ${OPENSSLSRC}/apps
|
||||
|
@ -1,4 +1,9 @@
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 01:48:47 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 12:24:29 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
NOMAN= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -16,11 +21,6 @@ SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c \
|
||||
SRCS+= random.c
|
||||
SRCS+= readpassphrase.c
|
||||
|
||||
NOLINT= # defined
|
||||
NOMAN= # defined
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
|
||||
# only needed during build - prevent installation of library
|
||||
libinstall::
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 01:48:47 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 12:24:29 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kdc
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= string2key
|
||||
MAN= string2key.8
|
||||
|
@ -1,13 +1,13 @@
|
||||
# $NetBSD: Makefile,v 1.18 2001/12/12 01:48:49 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.19 2001/12/12 12:24:30 lukem Exp $
|
||||
|
||||
NOPIC= # defined
|
||||
NOPROFILE= # defined
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
LIB=bind
|
||||
|
||||
NOPIC=# defined
|
||||
NOPROFILE=# defined
|
||||
NOLINT=# defined
|
||||
|
||||
CPPFLAGS+= ${INCLUDE} -I${BIND_DIST_DIR}/lib/dst \
|
||||
-DHMAC_MD5 -DUSE_MD5
|
||||
.if 0 # ${MKCRYPTO} == "yes"
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 01:48:51 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2001/12/12 12:24:30 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kdc
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= hprop
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.10 2001/12/12 01:48:51 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 12:24:30 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kadmin
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kadmin
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.5 2001/12/12 01:48:51 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.6 2001/12/12 12:24:30 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kdc
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kdc
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.8 2001/12/12 01:48:52 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2001/12/12 12:24:30 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/kdc
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= kstash
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.11 2001/12/12 01:48:52 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.12 2001/12/12 12:24:31 lukem Exp $
|
||||
|
||||
NOLINT= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -6,7 +8,6 @@ DIST= ${.CURDIR}/../../crypto/dist
|
||||
.PATH: ${DIST}/heimdal/admin
|
||||
|
||||
WARNS?= 1
|
||||
NOLINT= # defined
|
||||
|
||||
PROG= ktutil
|
||||
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:48:53 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:31 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -22,7 +24,6 @@ FILES= Oncore-SHMEM.htm accopt.htm assoc.htm audio.htm authopt.htm \
|
||||
y2k.htm
|
||||
.endif
|
||||
SUBDIR= hints
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -1,4 +1,6 @@
|
||||
# $NetBSD: Makefile,v 1.2 2001/12/12 01:48:53 tv Exp $
|
||||
# $NetBSD: Makefile,v 1.3 2001/12/12 12:24:31 lukem Exp $
|
||||
|
||||
NOOBJ= # defined
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -11,7 +13,6 @@ FILES= a-ux aix bsdi changes decosf1 decosf2 hpux linux notes-xntp-v3 parse \
|
||||
solaris.xtra.patchfreq sun4 svr4-dell svr4_package todo vxworks.html \
|
||||
winnt.htm
|
||||
.endif
|
||||
NOOBJ= # defined
|
||||
|
||||
.include "../../Makefile.inc"
|
||||
.include <bsd.prog.mk>
|
||||
|
Loading…
Reference in New Issue
Block a user