mirror of
https://github.com/openbsd/src.git
synced 2024-12-21 23:18:00 -08:00
a few depend:-related thingies that were still in.
okay millert@, tb@
This commit is contained in:
parent
d4aaf048ab
commit
3367dcf595
4
Makefile
4
Makefile
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.134 2017/07/05 10:22:32 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.135 2019/12/21 21:39:59 espie Exp $
|
||||
|
||||
#
|
||||
# For more information on building in tricky environments, please see
|
||||
@ -109,6 +109,6 @@ ${CROSS_TARGETS}:
|
||||
|
||||
.PHONY: ${CROSS_TARGETS} \
|
||||
build regression-tests includes beforeinstall afterinstall \
|
||||
all depend do-build
|
||||
all do-build
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.12 2015/11/15 07:12:50 deraadt Exp $
|
||||
# $OpenBSD: Makefile,v 1.13 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
PROG= more
|
||||
CFLAGS+= -I. -I${.CURDIR}/
|
||||
@ -6,8 +6,6 @@ SRCS= more.c tputs.c termcap.c tgoto.c
|
||||
|
||||
CLEANFILES+=morehelp.h
|
||||
|
||||
beforedepend: morehelp.h
|
||||
|
||||
morehelp.h: ${.CURDIR}/more.help
|
||||
echo -n 'const char *more_help = "' > morehelp.h
|
||||
sed -e 's/[\\"]/\\&/g' -e 's/$$/\\n\\/' ${.CURDIR}/more.help >> morehelp.h
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.475 2019/12/02 02:45:18 deraadt Exp $
|
||||
# $OpenBSD: Makefile,v 1.476 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -68,7 +68,7 @@ RCDAEMONS=amd apmd bgpd bootparamd cron dhcpd dhcrelay dhcrelay6 dvmrpd \
|
||||
|
||||
MISETS= base${OSrev}.tgz comp${OSrev}.tgz man${OSrev}.tgz game${OSrev}.tgz
|
||||
|
||||
all clean cleandir depend etc install:
|
||||
all clean cleandir etc install:
|
||||
|
||||
install-mtree:
|
||||
${INSTALL} -c -o root -g wheel -m 600 mtree/special \
|
||||
|
@ -1,7 +1,7 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2017/06/12 18:49:33 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
NOOBJ= noobj
|
||||
all wargames clean cleandir depend tags:
|
||||
all wargames clean cleandir tags:
|
||||
|
||||
install:
|
||||
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.9 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.10 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include "${.CURDIR}/shlib_version"
|
||||
SHLIB_MAJOR=${major}
|
||||
@ -61,9 +61,6 @@ config.status:
|
||||
|
||||
#CPPFLAGS+=-DHAVE_CONFIG_H -I${.CURDIR}/libstdc++/libmath
|
||||
#SRCS=libmath/stubs.c libmath/nan.c libmath/signbit.c libmath/signbitf.c
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.18 2019/05/17 14:47:03 schwarze Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.19 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -138,9 +138,6 @@ clean cleandir:
|
||||
c++filt.1: binutils/doc/cxxfilt.man
|
||||
sed -e 's,@PROGRAM@,c++filt,' <${.CURDIR}/binutils/doc/cxxfilt.man >$@
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.88 2019/02/24 12:57:13 kn Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.89 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -94,9 +94,6 @@ clean cleandir:
|
||||
c++filt.1: binutils/cxxfilt.man
|
||||
sed -e 's,@PROGRAM@,c++filt,' <${.CURDIR}/binutils/cxxfilt.man >$@
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
# $FreeBSD: src/gnu/usr.bin/cc/doc/Makefile,v 1.14.8.1 2009/04/15 03:14:26 kensmith Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2016/11/08 17:39:12 tb Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -62,9 +62,6 @@ all: ${INFOF}
|
||||
clean: _SUBDIRUSE
|
||||
rm -f ${CLEANFILES}
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
install: ${INFOF}
|
||||
.for x in ${INFOS}
|
||||
install-info --quiet --section=${INFOSECTION} --entry=${INFOENTRY_${x}} \
|
||||
|
@ -1,5 +1,5 @@
|
||||
# $FreeBSD: src/gnu/usr.bin/cc/include/Makefile,v 1.9.8.1 2009/04/15 03:14:26 kensmith Exp $
|
||||
# $OpenBSD: Makefile,v 1.13 2016/11/08 17:39:12 tb Exp $
|
||||
# $OpenBSD: Makefile,v 1.14 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -41,9 +41,6 @@ clean: _SUBDIRUSE
|
||||
|
||||
cleandir: _SUBDIRUSE clean
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
.if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
|
||||
prereq: mm_malloc.h unwind.h
|
||||
.else
|
||||
|
@ -1,5 +1,5 @@
|
||||
# $FreeBSD: src/gnu/lib/libgcov/Makefile,v 1.6 2009/06/21 01:54:47 kan Exp $
|
||||
# $OpenBSD: Makefile,v 1.3 2017/06/16 10:25:54 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -70,7 +70,6 @@ ${COMMONHDRS}: ${.CURDIR}/../cc_tools/Makefile
|
||||
CLEANFILES += ${COMMONHDRS}
|
||||
CLEANFILES += cs-*.h option*
|
||||
|
||||
${OBJS} beforedepend: ${COMMONHDRS}
|
||||
BUILDFIRST = ${COMMONHDRS}
|
||||
BUILDAFTER += ${OBJS_T} ${OBJS_P} ${OBJS_S}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.58 2018/09/14 13:37:52 naddy Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.59 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -66,9 +66,6 @@ clean cleandir:
|
||||
-@if [ -e Makefile ]; then ${MAKE} distclean; fi
|
||||
rm -f ${CLEANFILES}
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.46 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.47 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
INFODIR= infodir=/usr/share/info
|
||||
INFOPATH= DEFAULT_INFOPATH=/usr/local/info:/usr/share/info:.
|
||||
@ -67,9 +67,6 @@ clean cleandir:
|
||||
if [ -e ${.OBJDIR}/Makefile ]; then \
|
||||
$(FSFMAKE) distclean; fi
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.12 2017/06/16 10:25:54 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.13 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
|
||||
RPCSRCS= bootparam_prot.x klm_prot.x mount.x nfs_prot.x \
|
||||
@ -11,8 +11,6 @@ CLEANFILES+= ${SRCS} ${HDRS}
|
||||
LIB= rpcsvc
|
||||
NOMAN=
|
||||
|
||||
all: ${HDRS}
|
||||
beforedepend: ${HDRS}
|
||||
prereq: ${HDRS}
|
||||
|
||||
BUILDFIRST = ${HDRS}
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2019/12/21 21:40:00 espie Exp $
|
||||
# from: @(#)Makefile 5.1.1.1 (Berkeley) 5/7/91
|
||||
|
||||
# Missing: connectives, words
|
||||
@ -7,7 +7,7 @@ FILES= README propernames web2 web2a
|
||||
NOOBJ= noobj
|
||||
LINKS= ${BINDIR}/dict/web2 ${BINDIR}/dict/words
|
||||
|
||||
all clean cleandir depend tags:
|
||||
all clean cleandir tags:
|
||||
|
||||
realinstall:
|
||||
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.18 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.19 2019/12/21 21:40:00 espie Exp $
|
||||
# from: @(#)Makefile 5.13 (Berkeley) 5/7/91
|
||||
|
||||
FILES= airport birthtoken countrycodes \
|
||||
@ -11,7 +11,7 @@ FILES= airport birthtoken countrycodes \
|
||||
SUBDIR= pcvtfonts
|
||||
.endif
|
||||
|
||||
all clean cleandir depend obj tags: _SUBDIRUSE
|
||||
all clean cleandir obj tags: _SUBDIRUSE
|
||||
|
||||
realinstall:
|
||||
cd ${.CURDIR}; install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
||||
|
@ -1,11 +1,11 @@
|
||||
# $OpenBSD: Makefile,v 1.6 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.7 2019/12/21 21:40:00 espie Exp $
|
||||
|
||||
FILES= OPENBSD-SNMPD-CONF.txt OPENBSD-BASE-MIB.txt
|
||||
FILES+= OPENBSD-MEM-MIB.txt OPENBSD-SENSORS-MIB.txt
|
||||
FILES+= OPENBSD-CARP-MIB.txt OPENBSD-PF-MIB.txt
|
||||
FILES+= OPENBSD-RELAYD-MIB.txt
|
||||
|
||||
all clean cleandir depend obj tags: _SUBDIRUSE
|
||||
all clean cleandir obj tags: _SUBDIRUSE
|
||||
|
||||
realinstall:
|
||||
${INSTALL} ${INSTALL_COPY} -o root -g wheel -m 0444 \
|
||||
|
@ -1,10 +1,10 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2019/12/21 21:40:01 espie Exp $
|
||||
# from: @(#)Makefile 5.3 (Berkeley) 10/22/90
|
||||
|
||||
FILES= std stdcrt vt100 vt300
|
||||
NOOBJ= noobj
|
||||
|
||||
all clean cleandir depend tags:
|
||||
all clean cleandir tags:
|
||||
|
||||
realinstall:
|
||||
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.8 2019/12/21 21:40:01 espie Exp $
|
||||
# from: @(#)Makefile 6.13 (Berkeley) 3/20/91
|
||||
|
||||
FILES= tmac.andoc
|
||||
@ -7,7 +7,7 @@ NOOBJ= noobj
|
||||
|
||||
SUBDIR= mdoc
|
||||
|
||||
all clean cleandir depend tags:
|
||||
all clean cleandir tags:
|
||||
|
||||
realinstall:
|
||||
install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${FILES} \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.5 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.6 2019/12/21 21:40:01 espie Exp $
|
||||
# @(#)Makefile 8.1 (Berkeley) 6/8/93
|
||||
|
||||
MSRCS= doc doc-ditroff doc-common doc-nroff doc-syms
|
||||
@ -8,7 +8,7 @@ LINKS= ${BINDIR}/doc ${BINDIR}/../tmac.doc
|
||||
STRIP_SED = ${.CURDIR}/../strip.sed
|
||||
NOOBJ= noobj
|
||||
|
||||
all clean cleandir depend tags:
|
||||
all clean cleandir tags:
|
||||
|
||||
beforeinstall:
|
||||
for i in ${MSRCS}; do \
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.4 2017/06/16 10:25:54 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.5 2019/12/21 21:40:01 espie Exp $
|
||||
|
||||
PROG= infocmp
|
||||
SRCS= infocmp.c dump_entry.c
|
||||
@ -10,8 +10,6 @@ CFLAGS+= -I${CURSES} -I${TIC} -I${.CURDIR} -I.
|
||||
CLEANFILES+= termsort.c infocmp.1
|
||||
.PATH: ${TIC}
|
||||
|
||||
beforedepend: termsort.c
|
||||
|
||||
dump_entry.o: termsort.c
|
||||
|
||||
termsort.c: ${TIC}/MKtermsort.sh
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.9 2017/06/16 10:25:54 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.10 2019/12/21 21:40:01 espie Exp $
|
||||
|
||||
PROG= tic
|
||||
SRCS= dump_entry.c tic.c
|
||||
@ -15,8 +15,6 @@ CLEANFILES+= termsort.c captoinfo.1
|
||||
COPTS+= -O0
|
||||
.endif
|
||||
|
||||
beforedepend: termsort.c
|
||||
|
||||
dump_entry.o: termsort.c
|
||||
|
||||
termsort.c: MKtermsort.sh
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile,v 1.11 2017/06/16 10:25:54 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.12 2019/12/21 21:40:01 espie Exp $
|
||||
|
||||
PROG= tset
|
||||
SRCS= tset.c dump_entry.c
|
||||
@ -11,8 +11,6 @@ CLEANFILES+= termsort.c
|
||||
.PATH: ${TIC}
|
||||
LINKS= ${BINDIR}/tset ${BINDIR}/reset
|
||||
|
||||
beforedepend: termsort.c
|
||||
|
||||
dump_entry.o: termsort.c
|
||||
|
||||
termsort.c: ${TIC}/MKtermsort.sh
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.17 2019/12/16 17:16:12 sthen Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.18 2019/12/21 21:40:01 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -61,9 +61,6 @@ clean cleandir:
|
||||
-@if [ -e Makefile ]; then ${MAKE} distclean; fi
|
||||
rm -f ${CLEANFILES}
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.15 2017/06/12 18:49:34 espie Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.16 2019/12/21 21:40:01 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -73,9 +73,6 @@ clean cleandir:
|
||||
-@if [ -e Makefile ]; then ${MAKE} realclean; fi
|
||||
rm -f ${CLEANFILES}
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.17 2019/03/31 14:24:16 florian Exp $
|
||||
# $OpenBSD: Makefile.bsd-wrapper,v 1.18 2019/12/21 21:40:01 espie Exp $
|
||||
|
||||
.include <bsd.own.mk>
|
||||
|
||||
@ -89,9 +89,6 @@ clean cleandir:
|
||||
-@if [ -e Makefile ]; then ${MAKE} realclean; fi
|
||||
rm -f ${CLEANFILES}
|
||||
|
||||
depend:
|
||||
# Nothing here so far...
|
||||
|
||||
tags:
|
||||
# Nothing here so far...
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user