2013-12-06 12:04:52 +01:00
|
|
|
# $NetBSD: bsd.prog.mk,v 1.286 2013/11/11 10:24:53 joerg Exp $
|
2010-02-16 15:41:33 +01:00
|
|
|
# @(#)bsd.prog.mk 8.2 (Berkeley) 4/2/94
|
|
|
|
|
|
|
|
.ifndef HOSTPROG
|
|
|
|
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.init.mk>
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.include <bsd.shlib.mk>
|
|
|
|
.include <bsd.gcc.mk>
|
2012-11-01 22:55:12 +01:00
|
|
|
.include <minix.gcov.mk>
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
#
|
|
|
|
# Definitions and targets shared among all programs built by a single
|
|
|
|
# Makefile.
|
|
|
|
#
|
|
|
|
|
|
|
|
##### Basic targets
|
|
|
|
realinstall: proginstall scriptsinstall
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.gdbinit:
|
|
|
|
rm -f .gdbinit
|
|
|
|
.if defined(DESTDIR) && !empty(DESTDIR)
|
|
|
|
echo "set solib-absolute-prefix ${DESTDIR}" > .gdbinit
|
|
|
|
.else
|
|
|
|
touch .gdbinit
|
|
|
|
.endif
|
|
|
|
.for __gdbinit in ${GDBINIT}
|
|
|
|
echo "source ${__gdbinit}" >> .gdbinit
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
CLEANFILES+= a.out [Ee]rrs mklog core *.core .gdbinit
|
2010-02-16 15:41:33 +01:00
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if defined(SHAREDSTRINGS)
|
|
|
|
CLEANFILES+=strings
|
|
|
|
.c.o:
|
|
|
|
${CC} -E ${CPPFLAGS} ${CFLAGS} ${.IMPSRC} | xstr -c -
|
|
|
|
@${CC} ${CPPFLAGS} ${CFLAGS} -c x.c -o ${.TARGET}
|
2013-12-06 12:04:52 +01:00
|
|
|
.if defined(CTFCONVERT)
|
|
|
|
${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
|
|
|
|
.endif
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
@rm -f x.c
|
2010-02-16 15:41:33 +01:00
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.cc.o .cpp.o .cxx.o .C.o:
|
|
|
|
${CXX} -E ${CPPFLAGS} ${CXXFLAGS} ${.IMPSRC} | xstr -c -
|
|
|
|
@mv -f x.c x.cc
|
|
|
|
@${CXX} ${CPPFLAGS} ${CXXFLAGS} -c x.cc -o ${.TARGET}
|
2013-12-06 12:04:52 +01:00
|
|
|
.if defined(CTFCONVERT)
|
|
|
|
${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
|
|
|
|
.endif
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
@rm -f x.cc
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
|
|
|
|
.if defined(MKPIE) && (${MKPIE} != "no")
|
|
|
|
CFLAGS+= ${PIE_CFLAGS}
|
|
|
|
AFLAGS+= ${PIE_AFLAGS}
|
|
|
|
LDFLAGS+= ${PIE_LDFLAGS}
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
CFLAGS+= ${COPTS}
|
2013-12-06 12:04:52 +01:00
|
|
|
.if defined(MKDEBUG) && (${MKDEBUG} != "no")
|
|
|
|
CFLAGS+= -g
|
|
|
|
.endif
|
2010-02-16 15:41:33 +01:00
|
|
|
OBJCFLAGS+= ${OBJCOPTS}
|
|
|
|
MKDEP_SUFFIXES?= .o .ln
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
# CTF preserve debug symbols
|
|
|
|
.if defined(MKDTRACE) && (${MKDTRACE} != "no") && (${CFLAGS:M-g} != "")
|
|
|
|
CTFFLAGS+= -g
|
|
|
|
CTFMFLAGS+= -g
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# ELF platforms depend on crti.o, crtbegin.o, crtend.o, and crtn.o
|
|
|
|
.ifndef LIBCRTBEGIN
|
|
|
|
LIBCRTBEGIN= ${DESTDIR}/usr/lib/crti.o ${_GCC_CRTBEGIN}
|
|
|
|
.MADE: ${LIBCRTBEGIN}
|
|
|
|
.endif
|
|
|
|
.ifndef LIBCRTEND
|
|
|
|
LIBCRTEND= ${_GCC_CRTEND} ${DESTDIR}/usr/lib/crtn.o
|
|
|
|
.MADE: ${LIBCRTEND}
|
|
|
|
.endif
|
|
|
|
_SHLINKER= ${SHLINKDIR}/ld.elf_so
|
|
|
|
|
|
|
|
.ifndef LIBCRT0
|
|
|
|
LIBCRT0= ${DESTDIR}/usr/lib/crt0.o
|
|
|
|
.MADE: ${LIBCRT0}
|
|
|
|
.endif
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
.ifndef LIBCRTI
|
|
|
|
LIBCRTI= ${DESTDIR}/usr/lib/crti.o
|
|
|
|
.MADE: ${LIBCRTI}
|
|
|
|
.endif
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
##### Installed system library definitions
|
|
|
|
#
|
|
|
|
# E.g.
|
|
|
|
# LIBC?=${DESTDIR}/usr/lib/libc.a
|
|
|
|
# LIBX11?=${DESTDIR}/usr/X11R7/lib/libX11.a
|
|
|
|
# etc..
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
# NB: If you are a library here, add it in bsd.README
|
2010-02-16 15:41:33 +01:00
|
|
|
|
|
|
|
.for _lib in \
|
2013-02-26 09:24:42 +01:00
|
|
|
archive \
|
2013-12-06 12:04:52 +01:00
|
|
|
asn1 \
|
2013-04-24 18:57:59 +02:00
|
|
|
atf_c \
|
|
|
|
atf_cxx \
|
2013-12-06 12:04:52 +01:00
|
|
|
bind9 \
|
|
|
|
bluetooth \
|
|
|
|
bsdmalloc \
|
2013-04-24 18:57:59 +02:00
|
|
|
bz2 \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
c \
|
2013-04-24 18:57:59 +02:00
|
|
|
c_pic \
|
2013-12-06 12:04:52 +01:00
|
|
|
com_err \
|
|
|
|
compat \
|
2013-04-24 18:57:59 +02:00
|
|
|
crypt \
|
2013-12-06 12:04:52 +01:00
|
|
|
crypto \
|
|
|
|
crypto_idea \
|
|
|
|
crypto_mdc2 \
|
|
|
|
crypto_rc5 \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
curses \
|
2013-12-06 12:04:52 +01:00
|
|
|
dbm \
|
|
|
|
des \
|
|
|
|
dns \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
edit \
|
2013-12-06 12:04:52 +01:00
|
|
|
event \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
expat \
|
2013-12-06 12:04:52 +01:00
|
|
|
fetch \
|
|
|
|
fl \
|
|
|
|
form \
|
|
|
|
g2c \
|
|
|
|
gcc \
|
|
|
|
gnumalloc \
|
|
|
|
gssapi \
|
|
|
|
hdb \
|
|
|
|
heimbase \
|
|
|
|
heimntlm \
|
|
|
|
hx509 \
|
|
|
|
intl \
|
|
|
|
ipsec \
|
|
|
|
isc \
|
|
|
|
isccc \
|
|
|
|
isccfg \
|
|
|
|
kadm5clnt \
|
|
|
|
kadm5srv \
|
|
|
|
kafs \
|
|
|
|
krb5 \
|
|
|
|
kvm \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
l \
|
2013-12-06 12:04:52 +01:00
|
|
|
lber \
|
|
|
|
ldap \
|
|
|
|
ldap_r \
|
2013-02-26 09:24:42 +01:00
|
|
|
lua \
|
2013-12-06 12:04:52 +01:00
|
|
|
lwres \
|
2013-04-24 18:57:59 +02:00
|
|
|
m \
|
|
|
|
magic \
|
2013-12-06 12:04:52 +01:00
|
|
|
menu \
|
2013-02-26 09:24:42 +01:00
|
|
|
objc \
|
2013-12-06 12:04:52 +01:00
|
|
|
ossaudio \
|
|
|
|
pam \
|
|
|
|
pcap \
|
|
|
|
pci \
|
|
|
|
pmc \
|
|
|
|
posix \
|
|
|
|
pthread \
|
|
|
|
pthread_dbg \
|
|
|
|
puffs \
|
|
|
|
quota \
|
|
|
|
radius \
|
|
|
|
resolv \
|
2013-04-24 18:57:59 +02:00
|
|
|
rmt \
|
2013-12-06 12:04:52 +01:00
|
|
|
roken \
|
|
|
|
rpcsvc \
|
|
|
|
rt \
|
|
|
|
rump \
|
|
|
|
rumpfs_cd9660fs \
|
|
|
|
rumpfs_efs \
|
|
|
|
rumpfs_ext2fs \
|
|
|
|
rumpfs_ffs \
|
|
|
|
rumpfs_hfs \
|
|
|
|
rumpfs_lfs \
|
|
|
|
rumpfs_msdosfs \
|
|
|
|
rumpfs_nfs \
|
|
|
|
rumpfs_ntfs \
|
|
|
|
rumpfs_syspuffs \
|
|
|
|
rumpfs_tmpfs \
|
|
|
|
rumpfs_udf \
|
|
|
|
rumpfs_ufs \
|
|
|
|
rumpuser \
|
|
|
|
saslc \
|
|
|
|
skey \
|
|
|
|
sl \
|
2013-02-26 09:24:42 +01:00
|
|
|
sqlite3 \
|
2013-12-06 12:04:52 +01:00
|
|
|
ss \
|
|
|
|
ssh \
|
|
|
|
ssl \
|
|
|
|
ssp \
|
2013-02-26 09:24:42 +01:00
|
|
|
stdcxx \
|
2013-12-06 12:04:52 +01:00
|
|
|
supcxx \
|
2013-04-24 18:57:59 +02:00
|
|
|
terminfo \
|
2013-12-06 12:04:52 +01:00
|
|
|
tre \
|
|
|
|
usbhid \
|
2013-04-24 18:57:59 +02:00
|
|
|
util \
|
2013-12-06 12:04:52 +01:00
|
|
|
wind \
|
|
|
|
wrap \
|
|
|
|
y \
|
2013-04-24 18:57:59 +02:00
|
|
|
z
|
|
|
|
|
|
|
|
.ifndef LIB${_lib:tu}
|
|
|
|
LIB${_lib:tu}= ${DESTDIR}/usr/lib/lib${_lib:S/xx/++/:S/atf_c/atf-c/}.a
|
|
|
|
.MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
# Minix libraries
|
|
|
|
.for _lib in \
|
|
|
|
audiodriver \
|
|
|
|
bdev \
|
|
|
|
blockdriver \
|
|
|
|
chardriver \
|
2014-07-10 12:18:11 +02:00
|
|
|
clkconf \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
ddekit \
|
2014-07-10 12:18:11 +02:00
|
|
|
ddekit_usb_client \
|
|
|
|
ddekit_usb_server \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
devman \
|
2014-07-10 12:18:11 +02:00
|
|
|
elf \
|
|
|
|
exec \
|
|
|
|
gpio \
|
|
|
|
hgfs \
|
|
|
|
i2cdriver \
|
|
|
|
inputdriver \
|
|
|
|
lwip \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
minc \
|
2014-07-10 12:18:11 +02:00
|
|
|
minixfs \
|
2014-01-14 13:48:43 +01:00
|
|
|
mthread \
|
2013-04-24 18:57:59 +02:00
|
|
|
netdriver \
|
2014-07-10 12:18:11 +02:00
|
|
|
netsock \
|
2013-04-24 18:57:59 +02:00
|
|
|
sffs \
|
|
|
|
sys \
|
|
|
|
timers \
|
2014-07-10 12:18:11 +02:00
|
|
|
usb \
|
|
|
|
vboxfs \
|
|
|
|
virtio \
|
|
|
|
vtreefs
|
2010-02-16 15:41:33 +01:00
|
|
|
.ifndef LIB${_lib:tu}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
LIB${_lib:tu}= ${DESTDIR}/usr/lib/lib${_lib:S/xx/++/:S/atf_c/atf-c/}.a
|
2010-02-16 15:41:33 +01:00
|
|
|
.MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
# PAM applications, if linked statically, need more libraries
|
|
|
|
.if (${MKPIC} == "no")
|
|
|
|
.if (${MKCRYPTO} != "no")
|
|
|
|
PAM_STATIC_LDADD+= -lssh
|
|
|
|
PAM_STATIC_DPADD+= ${LIBSSH}
|
|
|
|
.endif
|
|
|
|
.if (${MKKERBEROS} != "no")
|
|
|
|
PAM_STATIC_LDADD+= -lkafs -lkrb5 -lhx509 -lwind -lasn1 \
|
|
|
|
-lroken -lcom_err -lheimbase -lcrypto
|
|
|
|
PAM_STATIC_DPADD+= ${LIBKAFS} ${LIBKRB5} ${LIBHX509} ${LIBWIND} ${LIBASN1} \
|
|
|
|
${LIBROKEN} ${LIBCOM_ERR} ${LIBHEIMBASE} ${LIBCRYPTO}
|
|
|
|
.endif
|
|
|
|
.if (${MKSKEY} != "no")
|
|
|
|
PAM_STATIC_LDADD+= -lskey
|
|
|
|
PAM_STATIC_DPADD+= ${LIBSKEY}
|
|
|
|
.endif
|
|
|
|
PAM_STATIC_LDADD+= -lradius -lcrypt -lrpcsvc -lutil
|
|
|
|
PAM_STATIC_DPADD+= ${LIBRADIUS} ${LIBCRYPT} ${LIBRPCSVC} ${LIBUTIL}
|
|
|
|
.else
|
|
|
|
PAM_STATIC_LDADD=
|
|
|
|
PAM_STATIC_DPADD=
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
.if defined(__MINIX) && ${MACHINE_ARCH} == "earm"
|
|
|
|
# LSC: On ARM, when compiling statically, with gcc, lgcc_eh is required
|
|
|
|
LDFLAGS+= ${${ACTIVE_CC} == "gcc":? -lgcc_eh:}
|
|
|
|
.endif # defined(__MINIX) && ${MACHINE_ARCH} == "earm"
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
# NB: If you are a library here, add it in bsd.README
|
2010-02-16 15:41:33 +01:00
|
|
|
.for _lib in \
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
FS \
|
|
|
|
GL \
|
|
|
|
GLU \
|
|
|
|
ICE \
|
|
|
|
SM \
|
|
|
|
X11 \
|
|
|
|
XTrap \
|
|
|
|
Xau \
|
|
|
|
Xaw \
|
|
|
|
Xdmcp \
|
|
|
|
Xext \
|
|
|
|
Xfont \
|
|
|
|
Xft \
|
|
|
|
Xi \
|
|
|
|
Xinerama \
|
|
|
|
Xmu \
|
|
|
|
Xmuu \
|
|
|
|
Xpm \
|
|
|
|
Xrandr \
|
|
|
|
Xrender \
|
|
|
|
Xss \
|
|
|
|
Xt \
|
|
|
|
Xtst \
|
|
|
|
Xv \
|
|
|
|
Xxf86dga \
|
|
|
|
Xxf86misc \
|
|
|
|
Xxf86vm \
|
|
|
|
dps \
|
|
|
|
fntstubs \
|
|
|
|
fontcache \
|
|
|
|
fontconfig \
|
|
|
|
fontenc \
|
|
|
|
freetype \
|
|
|
|
lbxutil \
|
|
|
|
xkbfile
|
2010-02-16 15:41:33 +01:00
|
|
|
.ifndef LIB${_lib:tu}
|
|
|
|
LIB${_lib:tu}= ${DESTDIR}${X11USRLIBDIR}/lib${_lib}.a
|
|
|
|
.MADE: ${LIB${_lib:tu}} # Note: ${DESTDIR} will be expanded
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
# Ugly one-offs
|
|
|
|
LIBX11_XCB= ${DESTDIR}${X11USRLIBDIR}/libX11-xcb.a
|
|
|
|
LIBXCB= ${DESTDIR}${X11USRLIBDIR}/libxcb.a
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
.if defined(RESCUEDIR)
|
|
|
|
CPPFLAGS+= -DRESCUEDIR=\"${RESCUEDIR}\"
|
|
|
|
.endif
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
_PROGLDOPTS=
|
|
|
|
.if ${SHLINKDIR} != "/usr/libexec" # XXX: change or remove if ld.so moves
|
|
|
|
_PROGLDOPTS+= -Wl,-dynamic-linker=${_SHLINKER}
|
|
|
|
.endif
|
|
|
|
.if ${SHLIBDIR} != "/usr/lib"
|
|
|
|
_PROGLDOPTS+= -Wl,-rpath,${SHLIBDIR} \
|
|
|
|
-L=${SHLIBDIR}
|
|
|
|
.elif ${SHLIBINSTALLDIR} != "/usr/lib"
|
|
|
|
_PROGLDOPTS+= -Wl,-rpath-link,${DESTDIR}${SHLIBINSTALLDIR} \
|
|
|
|
-L=${SHLIBINSTALLDIR}
|
|
|
|
.endif
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
__proginstall: .USE
|
|
|
|
${_MKTARGET_INSTALL}
|
|
|
|
${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
2012-02-16 23:26:38 +01:00
|
|
|
${STRIPFLAG} ${.ALLSRC} ${.TARGET}
|
2010-02-16 15:41:33 +01:00
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
__progrumpinstall: .USE
|
|
|
|
${_MKTARGET_INSTALL}
|
|
|
|
${INSTALL_FILE} -o ${RUMPBINOWN} -g ${RUMPBINGRP} -m ${RUMPBINMODE} \
|
|
|
|
${STRIPFLAG} ${.ALLSRC} ${.TARGET}
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
__progdebuginstall: .USE
|
|
|
|
${_MKTARGET_INSTALL}
|
|
|
|
${INSTALL_FILE} -o ${DEBUGOWN} -g ${DEBUGGRP} -m ${DEBUGMODE} \
|
2012-02-16 23:26:38 +01:00
|
|
|
${.ALLSRC} ${.TARGET}
|
2010-02-16 15:41:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Backwards compatibility with Makefiles that assume that bsd.prog.mk
|
|
|
|
# can only build a single binary.
|
|
|
|
#
|
|
|
|
|
|
|
|
_APPEND_MANS=yes
|
|
|
|
_APPEND_SRCS=yes
|
|
|
|
|
|
|
|
_CCLINKFLAGS=
|
|
|
|
|
|
|
|
.if defined(PROG_CXX)
|
|
|
|
PROG= ${PROG_CXX}
|
|
|
|
_CCLINK= ${CXX} ${_CCLINKFLAGS}
|
2014-06-11 17:06:15 +02:00
|
|
|
|
|
|
|
.if defined(__MINIX)
|
|
|
|
# BJG - stack unwinding (for C++ exceptions) doesn't work on static executables when built with llvm.
|
|
|
|
LDSTATIC= -dynamic
|
|
|
|
.endif # defined(__MINIX)
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if defined(RUMPPRG)
|
|
|
|
PROG= ${RUMPPRG}
|
|
|
|
. ifndef CRUNCHEDPROG
|
|
|
|
. if (${MKRUMP} != "no")
|
|
|
|
PROGS= ${RUMPPRG} rump.${RUMPPRG}
|
|
|
|
. else
|
|
|
|
PROGS= ${RUMPPRG}
|
|
|
|
. endif
|
|
|
|
. if defined(SRCS)
|
|
|
|
. if (${MKRUMP} != "no")
|
|
|
|
SRCS.rump.${PROG}:= ${SRCS} ${PROG}_rumpops.c ${RUMPSRCS}
|
|
|
|
. endif
|
|
|
|
SRCS+= ${PROG}_hostops.c
|
|
|
|
. else
|
|
|
|
SRCS= ${PROG}.c ${PROG}_hostops.c
|
|
|
|
. if (${MKRUMP} != "no")
|
|
|
|
SRCS.rump.${PROG}= ${PROG}.c ${PROG}_rumpops.c ${RUMPSRCS}
|
|
|
|
. endif
|
|
|
|
. endif
|
|
|
|
. if (${MKRUMP} != "no")
|
|
|
|
DPSRCS+= ${PROG}_rumpops.c ${RUMPSRCS}
|
|
|
|
LDADD.rump.${PROG}+= -lrumpclient
|
|
|
|
DPADD.rump.${PROG}+= ${LIBRUMPCLIENT}
|
|
|
|
MAN.rump.${PROG}= # defined but feeling empty
|
|
|
|
_RUMPINSTALL.rump.${PROG}=# defined
|
|
|
|
. endif
|
|
|
|
. else # CRUNCHEDPROG
|
|
|
|
PROGS= ${PROG}
|
|
|
|
CPPFLAGS+= -DCRUNCHOPS
|
|
|
|
. endif
|
|
|
|
.endif
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
.if defined(PROG)
|
|
|
|
_CCLINK?= ${CC} ${_CCLINKFLAGS}
|
|
|
|
. if defined(MAN)
|
|
|
|
MAN.${PROG}= ${MAN}
|
|
|
|
_APPEND_MANS= no
|
|
|
|
. endif
|
|
|
|
. if !defined(OBJS)
|
|
|
|
OBJS= ${OBJS.${PROG}}
|
|
|
|
. endif
|
|
|
|
. if defined(PROGNAME)
|
|
|
|
PROGNAME.${PROG}= ${PROGNAME}
|
|
|
|
. endif
|
|
|
|
. if defined(SRCS)
|
|
|
|
SRCS.${PROG}= ${SRCS}
|
|
|
|
_APPEND_SRCS= no
|
|
|
|
. endif
|
|
|
|
.endif
|
|
|
|
|
|
|
|
# Turn the single-program PROG and PROG_CXX variables into their multi-word
|
|
|
|
# counterparts, PROGS and PROGS_CXX.
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if !defined(RUMPPRG)
|
|
|
|
. if defined(PROG_CXX) && !defined(PROGS_CXX)
|
2010-02-16 15:41:33 +01:00
|
|
|
PROGS_CXX= ${PROG_CXX}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
. elif defined(PROG) && !defined(PROGS)
|
2010-02-16 15:41:33 +01:00
|
|
|
PROGS= ${PROG}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
. endif
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
##### Libraries that this may depend upon.
|
|
|
|
.if defined(PROGDPLIBS) # {
|
|
|
|
.for _lib _dir in ${PROGDPLIBS}
|
|
|
|
.if !defined(BINDO.${_lib})
|
|
|
|
PROGDO.${_lib}!= cd "${_dir}" && ${PRINTOBJDIR}
|
|
|
|
.MAKEOVERRIDES+=PROGDO.${_lib}
|
|
|
|
.endif
|
|
|
|
LDADD+= -L${PROGDO.${_lib}} -l${_lib}
|
|
|
|
.if exists(${PROGDO.${_lib}}/lib${_lib}_pic.a)
|
|
|
|
DPADD+= ${PROGDO.${_lib}}/lib${_lib}_pic.a
|
|
|
|
.elif exists(${PROGDO.${_lib}}/lib${_lib}.so)
|
|
|
|
DPADD+= ${PROGDO.${_lib}}/lib${_lib}.so
|
|
|
|
.else
|
|
|
|
DPADD+= ${PROGDO.${_lib}}/lib${_lib}.a
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.endif # }
|
2010-02-16 15:41:33 +01:00
|
|
|
#
|
|
|
|
# Per-program definitions and targets.
|
|
|
|
#
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
_CCLINK.CDEFAULT= ${CC} ${_CCLINKFLAGS}
|
2010-02-16 15:41:33 +01:00
|
|
|
# Definitions specific to C programs.
|
|
|
|
.for _P in ${PROGS}
|
|
|
|
SRCS.${_P}?= ${_P}.c
|
|
|
|
_CCLINK.${_P}= ${CC} ${_CCLINKFLAGS}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
_CFLAGS.${_P}= ${CFLAGS} ${CPUFLAGS}
|
|
|
|
_CPPFLAGS.${_P}= ${CPPFLAGS}
|
|
|
|
_COPTS.${_P}= ${COPTS}
|
2010-02-16 15:41:33 +01:00
|
|
|
.endfor
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
_CCLINK.CXXDEFAULT= ${CXX} ${_CCLINKFLAGS}
|
2010-02-16 15:41:33 +01:00
|
|
|
# Definitions specific to C++ programs.
|
|
|
|
.for _P in ${PROGS_CXX}
|
|
|
|
SRCS.${_P}?= ${_P}.cc
|
|
|
|
_CCLINK.${_P}= ${CXX} ${_CCLINKFLAGS}
|
|
|
|
.endfor
|
|
|
|
|
|
|
|
# Language-independent definitions.
|
2013-12-06 16:46:30 +01:00
|
|
|
.if defined(__MINIX)
|
|
|
|
.if ${USE_BITCODE:Uno} == "yes"
|
2013-06-17 16:51:49 +02:00
|
|
|
CFLAGS+= -flto
|
2013-12-06 16:46:30 +01:00
|
|
|
.endif # ${USE_BITCODE:Uno} == "yes"
|
2013-06-17 16:51:49 +02:00
|
|
|
|
2013-12-06 16:46:30 +01:00
|
|
|
.if ${USE_BITCODE:Uyes} == "no"
|
|
|
|
#LSC Gold linker seems to require the library directory to be set up if
|
|
|
|
# a sysroot parameter has been given.
|
|
|
|
LDFLAGS+= -L ${DESTDIR}/usr/lib
|
|
|
|
.endif # ${USE_BITCODE:U} == "no"
|
|
|
|
.endif # defined(__MINIX)
|
2013-12-06 12:04:52 +01:00
|
|
|
|
|
|
|
.for _P in ${PROGS} ${PROGS_CXX} # {
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
BINDIR.${_P}?= ${BINDIR}
|
|
|
|
PROGNAME.${_P}?= ${_P}
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if ${MKDEBUG} != "no" && !commands(${_P})
|
2010-02-16 15:41:33 +01:00
|
|
|
_PROGDEBUG.${_P}:= ${PROGNAME.${_P}}.debug
|
|
|
|
.endif
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if defined(PAXCTL_FLAGS)
|
|
|
|
PAXCTL_FLAGS.${_P}?= ${PAXCTL_FLAGS}
|
|
|
|
.endif
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
##### PROG specific flags.
|
2010-05-12 18:28:54 +02:00
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
_DPADD.${_P}= ${DPADD} ${DPADD.${_P}}
|
2010-02-16 15:41:33 +01:00
|
|
|
_LDADD.${_P}= ${LDADD} ${LDADD.${_P}}
|
|
|
|
_LDFLAGS.${_P}= ${LDFLAGS} ${LDFLAGS.${_P}}
|
|
|
|
_LDSTATIC.${_P}= ${LDSTATIC} ${LDSTATIC.${_P}}
|
|
|
|
|
|
|
|
##### Build and install rules
|
|
|
|
.if !empty(_APPEND_SRCS:M[Yy][Ee][Ss])
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
SRCS+= ${SRCS.${_P}} # For bsd.dep.mk
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
_YPSRCS.${_P}= ${SRCS.${_P}:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS.${_P}:M*.y:.y=.h}}
|
|
|
|
|
|
|
|
DPSRCS+= ${_YPSRCS.${_P}}
|
|
|
|
CLEANFILES+= ${_YPSRCS.${_P}}
|
|
|
|
|
|
|
|
.if !empty(SRCS.${_P}:N*.h:N*.sh:N*.fth)
|
|
|
|
OBJS.${_P}+= ${SRCS.${_P}:N*.h:N*.sh:N*.fth:R:S/$/.o/g}
|
|
|
|
LOBJS.${_P}+= ${LSRCS:.c=.ln} ${SRCS.${_P}:M*.c:.c=.ln}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.if defined(OBJS.${_P}) && !empty(OBJS.${_P}) # {
|
|
|
|
.NOPATH: ${OBJS.${_P}} ${_P} ${_YPSRCS.${_P}}
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if (defined(USE_COMBINE) && ${USE_COMBINE} != "no" && !commands(${_P}) \
|
|
|
|
&& (${_CCLINK.${_P}} == ${_CCLINK.CDEFAULT} \
|
|
|
|
|| ${_CCLINK.${_P}} == ${_CCLINK.CXXDEFAULT}) \
|
|
|
|
&& !defined(NOCOMBINE.${_P}) && !defined(NOCOMBINE))
|
|
|
|
.for f in ${SRCS.${_P}:N*.h:N*.sh:N*.fth:C/\.[yl]$/.c/g}
|
|
|
|
#_XFLAGS.$f := ${CPPFLAGS.$f:D1} ${CPUFLAGS.$f:D2} \
|
|
|
|
# ${COPTS.$f:D3} ${OBJCOPTS.$f:D4} ${CXXFLAGS.$f:D5}
|
|
|
|
.if (${CPPFLAGS.$f:D1} == "1" || ${CPUFLAGS.$f:D2} == "2" \
|
|
|
|
|| ${COPTS.$f:D3} == "3" || ${OBJCOPTS.$f:D4} == "4" \
|
|
|
|
|| ${CXXFLAGS.$f:D5} == "5") \
|
|
|
|
|| ("${f:M*.[cyl]}" == "" || commands(${f:R:S/$/.o/}))
|
|
|
|
XOBJS.${_P}+= ${f:R:S/$/.o/}
|
|
|
|
.else
|
|
|
|
XSRCS.${_P}+= ${f}
|
|
|
|
NODPSRCS+= ${f}
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
${_P}: .gdbinit ${LIBCRT0} ${LIBCRTI} ${XOBJS.${_P}} ${SRCS.${_P}} \
|
|
|
|
${DPSRCS} ${LIBC} ${LIBCRTBEGIN} ${LIBCRTEND} ${_DPADD.${_P}}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
${_MKTARGET_LINK}
|
|
|
|
.if defined(DESTDIR)
|
|
|
|
${_CCLINK.${_P}} -Wl,-nostdlib \
|
|
|
|
${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} ${_PROGLDOPTS} \
|
|
|
|
-B${_GCC_CRTDIR}/ -B${DESTDIR}/usr/lib/ \
|
|
|
|
-MD --combine ${_CPPFLAGS.${_P}} ${_CFLAGS.${_P}} ${_COPTS.${_P}} \
|
|
|
|
${XSRCS.${_P}:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} ${XOBJS.${_P}} \
|
|
|
|
${_LDADD.${_P}} -L${_GCC_LIBGCCDIR} -L${DESTDIR}/usr/lib
|
|
|
|
.else
|
|
|
|
${_CCLINK.${_P}} ${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} ${_PROGLDOPTS} \
|
|
|
|
-MD --combine ${_CPPFLAGS.${_P}} ${_COPTS.${_P}}
|
|
|
|
${XSRCS.${_P}:@.SRC.@${.ALLSRC:M*.c:M*${.SRC.}}@:O:u} ${XOBJS.${_P}} \
|
|
|
|
${_LDADD.${_P}}
|
|
|
|
.endif # defined(DESTDIR)
|
|
|
|
.if defined(CTFMERGE)
|
|
|
|
${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS.${_P}}
|
|
|
|
.endif
|
|
|
|
.if defined(PAXCTL_FLAGS.${_P})
|
|
|
|
${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET}
|
|
|
|
.endif
|
|
|
|
.if ${MKSTRIPIDENT} != "no"
|
|
|
|
${OBJCOPY} -R .ident ${.TARGET}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
CLEANFILES+= ${_P}.d
|
|
|
|
.if exists(${_P}.d)
|
|
|
|
.include "${_P}.d" # include -MD depend for program.
|
|
|
|
.endif
|
|
|
|
.else # USE_COMBINE
|
|
|
|
|
2010-02-16 15:41:33 +01:00
|
|
|
${OBJS.${_P}} ${LOBJS.${_P}}: ${DPSRCS}
|
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
.if defined(__MINIX) && ${USE_BITCODE:Uno} == "yes"
|
2013-06-17 16:51:49 +02:00
|
|
|
CLEANFILES+= ${_P}.opt.bcl ${_P}.bcl ${_P}.bcl.o
|
|
|
|
|
2014-05-06 10:43:42 +02:00
|
|
|
OPTFLAGS.${_P}?= ${OPTFLAGS}
|
2014-06-17 13:47:07 +02:00
|
|
|
BITCODE_LD_FLAGS_1ST.${_P}+= ${BITCODE_LD_FLAGS_1ST}
|
|
|
|
BITCODE_LD_FLAGS_2ND.${_P}+= ${BITCODE_LD_FLAGS_2ND}
|
2014-05-06 10:43:42 +02:00
|
|
|
|
2013-12-06 12:04:52 +01:00
|
|
|
${_P}.bcl: .gdbinit ${LIBCRT0} ${LIBCRTI} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} \
|
|
|
|
${LIBCRTEND} ${_DPADD.${_P}}
|
2013-06-17 16:51:49 +02:00
|
|
|
${_MKTARGET_LINK}
|
|
|
|
${_CCLINK.${_P}} \
|
|
|
|
-o ${.TARGET} \
|
|
|
|
-nostartfiles \
|
2013-12-06 16:46:30 +01:00
|
|
|
-L${DESTDIR}/usr/lib/bc \
|
2013-06-17 16:51:49 +02:00
|
|
|
${OBJS.${_P}} ${LLVM_LINK_ARGS} ${_LDADD.${_P}:N-shared} \
|
2013-12-06 16:46:30 +01:00
|
|
|
${_LDSTATIC.${_P}} ${_PROGLDOPTS} \
|
2013-06-17 16:51:49 +02:00
|
|
|
-Wl,-r \
|
2014-06-17 13:47:07 +02:00
|
|
|
${BITCODE_LD_FLAGS_1ST.${_P}} \
|
2013-12-06 16:46:30 +01:00
|
|
|
-Wl,-plugin-opt=emit-llvm
|
2013-06-17 16:51:49 +02:00
|
|
|
|
|
|
|
${_P}.opt.bcl: ${_P}.bcl ${LLVM_PASS}
|
|
|
|
${_MKTARGET_LINK}
|
2014-05-06 10:43:42 +02:00
|
|
|
${OPT} ${OPTFLAGS.${_P}} -o ${.TARGET} ${_P}.bcl
|
2013-06-17 16:51:49 +02:00
|
|
|
|
2013-12-06 16:46:30 +01:00
|
|
|
${_P}.bcl.o: ${_P}.opt.bcl
|
2013-06-17 16:51:49 +02:00
|
|
|
${_MKTARGET_LINK}
|
2013-12-06 16:46:30 +01:00
|
|
|
${LLC} -O1 -march=x86 -mcpu=i586 -filetype=obj -o ${.TARGET} ${.ALLSRC}
|
2013-06-17 16:51:49 +02:00
|
|
|
|
|
|
|
${_P}: ${_P}.bcl.o
|
2013-12-06 16:46:30 +01:00
|
|
|
.if !commands(${_P})
|
2013-06-17 16:51:49 +02:00
|
|
|
${_MKTARGET_LINK}
|
|
|
|
${_CCLINK.${_P}} \
|
2013-12-06 16:46:30 +01:00
|
|
|
${_LDFLAGS.${_P}} \
|
|
|
|
-L${DESTDIR}/usr/lib \
|
|
|
|
${_LDSTATIC.${_P}} -o ${.TARGET} \
|
|
|
|
${.TARGET}.bcl.o ${_PROGLDOPTS} ${_LDADD.${_P}} \
|
2014-06-17 13:47:07 +02:00
|
|
|
${BITCODE_LD_FLAGS_2ND.${_P}} \
|
2013-12-06 16:46:30 +01:00
|
|
|
-Wl,--allow-multiple-definition
|
|
|
|
.endif # !commands(${_P})
|
2013-06-17 16:51:49 +02:00
|
|
|
|
|
|
|
.else
|
2013-12-06 12:04:52 +01:00
|
|
|
${_P}: .gdbinit ${LIBCRT0} ${LIBCRTI} ${OBJS.${_P}} ${LIBC} ${LIBCRTBEGIN} \
|
|
|
|
${LIBCRTEND} ${_DPADD.${_P}}
|
|
|
|
.if !commands(${_P})
|
2010-02-16 15:41:33 +01:00
|
|
|
${_MKTARGET_LINK}
|
|
|
|
${_CCLINK.${_P}} \
|
|
|
|
${_LDFLAGS.${_P}} ${_LDSTATIC.${_P}} -o ${.TARGET} \
|
2013-12-06 12:04:52 +01:00
|
|
|
${OBJS.${_P}} ${_PROGLDOPTS} ${_LDADD.${_P}}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if defined(CTFMERGE)
|
|
|
|
${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS.${_P}}
|
|
|
|
.endif
|
2010-02-16 15:41:33 +01:00
|
|
|
.if defined(PAXCTL_FLAGS.${_P})
|
|
|
|
${PAXCTL} ${PAXCTL_FLAGS.${_P}} ${.TARGET}
|
|
|
|
.endif
|
|
|
|
.if ${MKSTRIPIDENT} != "no"
|
|
|
|
${OBJCOPY} -R .ident ${.TARGET}
|
|
|
|
.endif
|
|
|
|
.endif # !commands(${_P})
|
2013-12-06 12:04:52 +01:00
|
|
|
.endif # defined(__MINIX) && ${USE_BITCODE:Uno} == "yes"
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.endif # USE_COMBINE
|
2010-02-16 15:41:33 +01:00
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
${_P}.ro: ${OBJS.${_P}} ${_DPADD.${_P}}
|
2010-02-16 15:41:33 +01:00
|
|
|
${_MKTARGET_LINK}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
${CC} ${LDFLAGS} -nostdlib -r -Wl,-dc -o ${.TARGET} ${OBJS.${_P}}
|
2010-02-16 15:41:33 +01:00
|
|
|
|
|
|
|
.if defined(_PROGDEBUG.${_P})
|
|
|
|
${_PROGDEBUG.${_P}}: ${_P}
|
|
|
|
${_MKTARGET_CREATE}
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
( ${OBJCOPY} --only-keep-debug ${_P} ${_PROGDEBUG.${_P}} \
|
|
|
|
&& ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \
|
|
|
|
--add-gnu-debuglink=${_PROGDEBUG.${_P}} ${_P} \
|
|
|
|
) || (rm -f ${_PROGDEBUG.${_P}}; false)
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.endif # defined(OBJS.${_P}) && !empty(OBJS.${_P}) # }
|
|
|
|
|
|
|
|
.if !defined(MAN.${_P})
|
|
|
|
MAN.${_P}= ${_P}.1
|
|
|
|
.endif # !defined(MAN.${_P})
|
|
|
|
.if !empty(_APPEND_MANS:M[Yy][Ee][Ss])
|
|
|
|
MAN+= ${MAN.${_P}}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
realall: ${_P} ${_PROGDEBUG.${_P}}
|
|
|
|
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
CLEANFILES+= ${_P} ${_PROGDEBUG.${_P}}
|
2010-02-16 15:41:33 +01:00
|
|
|
|
|
|
|
.if defined(OBJS.${_P}) && !empty(OBJS.${_P})
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
CLEANFILES+= ${OBJS.${_P}} ${LOBJS.${_P}}
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
_PROG_INSTALL+= proginstall-${_P}
|
|
|
|
|
|
|
|
.if !target(proginstall-${_P}) # {
|
|
|
|
proginstall-${_P}:: ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \
|
|
|
|
${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}}
|
|
|
|
.PRECIOUS: ${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}} \
|
|
|
|
${_PROGDEBUG.${_P}:D${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}}
|
|
|
|
|
|
|
|
.if ${MKUPDATE} == "no"
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if defined(_RUMPINSTALL.${_P})
|
|
|
|
${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __progrumpinstall
|
|
|
|
.else
|
2010-02-16 15:41:33 +01:00
|
|
|
${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! ${_P} __proginstall
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.endif
|
2010-02-16 15:41:33 +01:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(${_P})
|
|
|
|
${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}! .MADE
|
|
|
|
.endif
|
|
|
|
.if defined(_PROGDEBUG.${_P})
|
|
|
|
${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! ${_PROGDEBUG.${_P}} __progdebuginstall
|
|
|
|
.if !defined(BUILD) && !make(all) && !make(${_P})
|
|
|
|
${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}! .MADE
|
|
|
|
.endif
|
|
|
|
.endif # define(_PROGDEBUG.${_P})
|
|
|
|
.else # MKUPDATE != no
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.if defined(_RUMPINSTALL.${_P})
|
|
|
|
${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __progrumpinstall
|
|
|
|
.else
|
2010-02-16 15:41:33 +01:00
|
|
|
${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: ${_P} __proginstall
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.endif
|
2010-02-16 15:41:33 +01:00
|
|
|
.if !defined(BUILD) && !make(all) && !make(${_P})
|
|
|
|
${DESTDIR}${BINDIR.${_P}}/${PROGNAME.${_P}}: .MADE
|
|
|
|
.endif
|
|
|
|
.if defined(_PROGDEBUG.${_P})
|
|
|
|
${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: ${_PROGDEBUG.${_P}} __progdebuginstall
|
|
|
|
.if !defined(BUILD) && !make(all) && !make(${_P})
|
|
|
|
${DESTDIR}${DEBUGDIR}${BINDIR.${_P}}/${_PROGDEBUG.${_P}}: .MADE
|
|
|
|
.endif
|
|
|
|
.endif # defined(_PROGDEBUG.${_P})
|
|
|
|
.endif # MKUPDATE != no
|
|
|
|
|
|
|
|
.endif # !target(proginstall-${_P}) # }
|
|
|
|
|
|
|
|
lint: lint-${_P}
|
|
|
|
lint-${_P}: ${LOBJS.${_P}}
|
|
|
|
.if defined(LOBJS.${_P}) && !empty(LOBJS.${_P})
|
|
|
|
${LINT} ${LINTFLAGS} ${_LDFLAGS.${_P}:C/-L[ ]*/-L/Wg:M-L*} ${LOBJS.${_P}} ${_LDADD.${_P}}
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.endfor # _P in ${PROGS} ${PROGS_CXX} # }
|
|
|
|
|
|
|
|
.if defined(OBJS) && !empty(OBJS) && \
|
|
|
|
(empty(PROGS) && empty(PROGS_CXX))
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
CLEANFILES+= ${OBJS} ${LOBJS}
|
2010-02-16 15:41:33 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !target(proginstall)
|
|
|
|
proginstall:: ${_PROG_INSTALL}
|
|
|
|
.endif
|
|
|
|
.PHONY: proginstall
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
realall: ${SCRIPTS}
|
|
|
|
.if defined(SCRIPTS) && !target(scriptsinstall) # {
|
|
|
|
SCRIPTSDIR?=${BINDIR}
|
|
|
|
SCRIPTSOWN?=${BINOWN}
|
|
|
|
SCRIPTSGRP?=${BINGRP}
|
|
|
|
SCRIPTSMODE?=${BINMODE}
|
|
|
|
|
|
|
|
scriptsinstall:: ${SCRIPTS:@S@${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}@}
|
|
|
|
.PRECIOUS: ${SCRIPTS:@S@${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}@}
|
|
|
|
|
|
|
|
__scriptinstall: .USE
|
|
|
|
${_MKTARGET_INSTALL}
|
|
|
|
${INSTALL_FILE} \
|
|
|
|
-o ${SCRIPTSOWN_${.ALLSRC:T}:U${SCRIPTSOWN}} \
|
|
|
|
-g ${SCRIPTSGRP_${.ALLSRC:T}:U${SCRIPTSGRP}} \
|
|
|
|
-m ${SCRIPTSMODE_${.ALLSRC:T}:U${SCRIPTSMODE}} \
|
|
|
|
${.ALLSRC} ${.TARGET}
|
|
|
|
|
|
|
|
.for S in ${SCRIPTS:O:u}
|
|
|
|
.if ${MKUPDATE} == "no"
|
|
|
|
${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}! ${S} __scriptinstall
|
|
|
|
.if !defined(BUILD) && !make(all) && !make(${S})
|
|
|
|
${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}! .MADE
|
|
|
|
.endif
|
|
|
|
.else
|
|
|
|
${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}: ${S} __scriptinstall
|
|
|
|
.if !defined(BUILD) && !make(all) && !make(${S})
|
|
|
|
${DESTDIR}${SCRIPTSDIR_${S}:U${SCRIPTSDIR}}/${SCRIPTSNAME_${S}:U${SCRIPTSNAME:U${S:T:R}}}: .MADE
|
|
|
|
.endif
|
|
|
|
.endif
|
|
|
|
.endfor
|
|
|
|
.endif # }
|
|
|
|
|
|
|
|
.if !target(scriptsinstall)
|
|
|
|
scriptsinstall::
|
|
|
|
.endif
|
|
|
|
.PHONY: scriptsinstall
|
|
|
|
|
|
|
|
##### Pull in related .mk logic
|
|
|
|
LINKSOWN?= ${BINOWN}
|
|
|
|
LINKSGRP?= ${BINGRP}
|
|
|
|
LINKSMODE?= ${BINMODE}
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.man.mk>
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.include <bsd.nls.mk>
|
2010-06-25 20:29:09 +02:00
|
|
|
.include <bsd.files.mk>
|
|
|
|
.include <bsd.inc.mk>
|
|
|
|
.include <bsd.links.mk>
|
|
|
|
.include <bsd.sys.mk>
|
|
|
|
.include <bsd.dep.mk>
|
Upgrading build system to new NetBSD revision
The tested targets are the followgin ones:
* tools
* distribution
* sets
* release
The remaining NetBSD targets have not been disabled nor tested
*at all*. Try them at your own risk, they may reboot the earth.
For all compliant Makefiles, objects and generated files are put in
MAKEOBJDIR, which means you can now keep objects between two branch
switching. Same for DESTDIR, please refer to build.sh options.
Regarding new or modifications of Makefiles a few things:
* Read share/mk/bsd.README
* If you add a subdirectory, add a Makefile in it, and have it called
by the parent through the SUBDIR variable.
* Do not add arbitrary inclusion which crosses to another branch of
the hierarchy; If you can't do without it, put a comment on why.
If possible, do not use inclusion at all.
* Use as much as possible the infrastructure, it is here to make
life easier, do not fight it.
Sets and package are now used to track files.
We have one set called "minix", composed of one package called "minix-sys"
2012-09-12 09:37:05 +02:00
|
|
|
.include <bsd.clang-analyze.mk>
|
|
|
|
.include <bsd.clean.mk>
|
2010-02-16 15:41:33 +01:00
|
|
|
|
|
|
|
${TARGETS}: # ensure existence
|
|
|
|
|
|
|
|
.endif # HOSTPROG
|