1# @(#)Makefile 8.2 (Berkeley) 1/4/94 2# $FreeBSD$ 3# 4# Doing a "make install" builds /usr/include. 5 6.include <src.opts.mk> 7 8PACKAGE=runtime 9TAGS+= development 10CLEANFILES= osreldate.h version 11SUBDIR= arpa protocols rpcsvc rpc xlocale 12SUBDIR_PARALLEL= 13INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \ 14 db.h \ 15 dirent.h dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \ 16 fts.h ftw.h getopt.h glob.h grp.h \ 17 ieeefp.h ifaddrs.h \ 18 inttypes.h iso646.h kenv.h langinfo.h libgen.h limits.h link.h \ 19 locale.h malloc.h malloc_np.h memory.h monetary.h mpool.h mqueue.h \ 20 ndbm.h netconfig.h \ 21 netdb.h nl_types.h nlist.h nss.h nsswitch.h paths.h \ 22 printf.h proc_service.h pthread.h \ 23 pthread_np.h pwd.h ranlib.h readpassphrase.h regex.h \ 24 res_update.h resolv.h runetype.h search.h semaphore.h setjmp.h \ 25 signal.h spawn.h stab.h stdalign.h stdbool.h stddef.h \ 26 stdnoreturn.h stdio.h stdlib.h string.h stringlist.h \ 27 strings.h sysexits.h tar.h termios.h tgmath.h \ 28 time.h timeconv.h timers.h ttyent.h \ 29 uchar.h ulimit.h unistd.h utime.h utmpx.h uuid.h varargs.h \ 30 wchar.h wctype.h wordexp.h xlocale.h 31 32.PATH: ${.CURDIR}/../contrib/libc-vis 33INCS+= vis.h 34 35MHDRS= float.h floatingpoint.h stdarg.h 36 37PHDRS= sched.h _semaphore.h 38 39LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h stdatomic.h stdint.h \ 40 syslog.h ucontext.h 41 42LDIRS= bsm cam geom net net80211 netgraph netinet netinet6 \ 43 netipsec netnatm netsmb nfs nfsclient nfsserver sys vm 44 45LSUBDIRS= cam/ata cam/nvme cam/scsi \ 46 dev/acpica dev/agp dev/an dev/bktr dev/ciss dev/filemon dev/firewire \ 47 dev/hwpmc \ 48 dev/ic dev/iicbus dev/io dev/lmc dev/mfi dev/nvme \ 49 dev/ofw dev/pbio dev/pci ${_dev_powermac_nvram} dev/ppbus dev/smbus \ 50 dev/speaker dev/utopia dev/vkbd dev/wi \ 51 fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/nullfs \ 52 fs/procfs fs/smbfs fs/udf fs/unionfs \ 53 geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \ 54 geom/mirror geom/mountver geom/multipath geom/nop \ 55 geom/raid geom/raid3 geom/shsec geom/stripe geom/virstor \ 56 net/altq \ 57 netgraph/atm netgraph/netflow \ 58 netinet/cc \ 59 security/audit \ 60 security/mac_biba security/mac_bsdextended security/mac_lomac \ 61 security/mac_mls security/mac_partition \ 62 ufs/ffs ufs/ufs 63 64LSUBSUBDIRS= dev/mpt/mpilib 65 66.if ${MK_BLUETOOTH} != "no" 67LSUBSUBDIRS+= netgraph/bluetooth/include 68.endif 69 70.if ${MK_CUSE} != "no" 71LSUBDIRS+= fs/cuse 72.endif 73 74.if ${MK_GSSAPI} != "no" 75SUBDIR+= gssapi 76INCS+= gssapi.h 77.endif 78 79.if ${MK_HESIOD} != "no" 80INCS+= hesiod.h 81.endif 82 83# Handle the #define aliases for libiconv 84.if ${MK_ICONV} == "yes" 85INCS+= iconv.h 86.endif 87 88.if ${MK_USB} != "no" 89LSUBDIRS+= dev/usb 90.endif 91 92.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64" 93_dev_powermac_nvram= dev/powermac_nvram 94.endif 95 96# Define SHARED to indicate whether you want symbolic links to the system 97# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is 98# probably only useful for developers and should be avoided if you do not 99# wish to tie your /usr/include and /usr/src together. 100#SHARED= symlinks 101SHARED?= copies 102 103INCS+= osreldate.h 104 105SYSDIR= ${.CURDIR}/../sys 106NEWVERS_SH= ${SYSDIR}/conf/newvers.sh 107PARAM_H= ${SYSDIR}/sys/param.h 108MK_OSRELDATE_SH= ${.CURDIR}/mk-osreldate.sh 109 110SYMLINKS+= ${INCLUDEDIR} ${LIBDIR}/include 111 112osreldate.h: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH} 113 env NEWVERS_SH=${NEWVERS_SH} PARAMFILE=${PARAM_H} SYSDIR=${SYSDIR} \ 114 sh ${MK_OSRELDATE_SH} 115 116.for i in ${LHDRS} 117INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 118.endfor 119.for i in ${MHDRS} 120INCSLINKS+= machine/$i ${INCLUDEDIR}/$i 121.endfor 122.for i in ${PHDRS} 123INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 124.endfor 125 126.if ${MACHINE} != ${MACHINE_CPUARCH} 127_MARCHS= ${MACHINE_CPUARCH} 128.endif 129.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 130_MARCHS+= x86 131.endif 132 133META_TARGETS+= compat 134stage_includes: ${SHARED} 135 136# Take care of stale directory-level symlinks. 137compat: 138.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto 139 if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \ 140 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \ 141 fi 142.endfor 143 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 144 -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ 145 -p ${DESTDIR}${INCLUDEDIR} > /dev/null 146 147copies: .PHONY .META 148.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} crypto machine machine/pc \ 149 ${_MARCHS} 150 if [ -d ${DESTDIR}${INCLUDEDIR}/$i ]; then \ 151 cd ${DESTDIR}${INCLUDEDIR}/$i; \ 152 for h in *.h; do \ 153 if [ -L $$h ]; then rm -f $$h; fi; \ 154 done; \ 155 fi 156.endfor 157.for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/evdev:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS} 158 cd ${.CURDIR}/../sys; \ 159 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ 160 ${DESTDIR}${INCLUDEDIR}/$i 161.endfor 162 cd ${.CURDIR}/../sys/dev/acpica; \ 163 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \ 164 ${DESTDIR}${INCLUDEDIR}/dev/acpica; \ 165 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 acpi_hpet.h \ 166 ${DESTDIR}${INCLUDEDIR}/dev/acpica 167 cd ${.CURDIR}/../sys/dev/agp; \ 168 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \ 169 ${DESTDIR}${INCLUDEDIR}/dev/agp 170 cd ${.CURDIR}/../sys/dev/bktr; \ 171 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \ 172 ${DESTDIR}${INCLUDEDIR}/dev/bktr 173.if ${MK_NAND} != "no" 174 cd ${.CURDIR}/../sys/dev/nand; \ 175 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \ 176 ${DESTDIR}${INCLUDEDIR}/dev/nand; \ 177 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \ 178 ${DESTDIR}${INCLUDEDIR}/dev/nand 179.endif 180 cd ${.CURDIR}/../sys/dev/evdev; \ 181 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 input.h \ 182 ${DESTDIR}${INCLUDEDIR}/dev/evdev; \ 183 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 input-event-codes.h \ 184 ${DESTDIR}${INCLUDEDIR}/dev/evdev; \ 185 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 uinput.h \ 186 ${DESTDIR}${INCLUDEDIR}/dev/evdev 187 cd ${.CURDIR}/../sys/dev/pci; \ 188 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \ 189 ${DESTDIR}${INCLUDEDIR}/dev/pci 190 cd ${.CURDIR}/../sys/fs/cd9660/; \ 191 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 192 ${DESTDIR}${INCLUDEDIR}/isofs/cd9660 193.if ${MK_IPFILTER} != "no" 194 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 195 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 196 ${DESTDIR}${INCLUDEDIR}/netinet 197.endif 198.if ${MK_PF} != "no" 199 cd ${.CURDIR}/../sys/netpfil/pf; \ 200 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 201 ${DESTDIR}${INCLUDEDIR}/netpfil/pf 202.endif 203 cd ${.CURDIR}/../sys/crypto; \ 204 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ 205 ${DESTDIR}${INCLUDEDIR}/crypto 206 cd ${.CURDIR}/../sys/opencrypto; \ 207 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 208 ${DESTDIR}${INCLUDEDIR}/crypto 209 cd ${.CURDIR}/../sys/${MACHINE}/include; \ 210 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 211 ${DESTDIR}${INCLUDEDIR}/machine 212.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc) 213 cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \ 214 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 215 ${DESTDIR}${INCLUDEDIR}/machine/pc 216.endif 217.for _MARCH in ${_MARCHS} 218.if exists(${.CURDIR}/../sys/${_MARCH}/include) 219 ${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \ 220 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 221 cd ${.CURDIR}/../sys/${_MARCH}/include; \ 222 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 223 ${DESTDIR}${INCLUDEDIR}/${_MARCH} 224.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc) 225 ${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \ 226 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 227 cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \ 228 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 229 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc 230.endif 231.endif 232.endfor 233 cd ${.CURDIR}/../sys/rpc; \ 234 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ 235 ${DESTDIR}${INCLUDEDIR}/rpc 236 cd ${.CURDIR}/../sys/teken; \ 237 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 teken.h \ 238 ${DESTDIR}${INCLUDEDIR}/teken 239.if ${MK_CDDL} != "no" 240 cd ${.CURDIR}/../cddl/contrib/opensolaris/lib/libzfs_core/common; \ 241 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 libzfs_core.h \ 242 ${DESTDIR}${INCLUDEDIR} 243 cd ${.CURDIR}/../cddl/contrib/opensolaris/lib/libnvpair; \ 244 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 libnvpair.h \ 245 ${DESTDIR}${INCLUDEDIR} 246 cd ${.CURDIR}/../sys/cddl/contrib/opensolaris/uts/common/sys; \ 247 ${INSTALL} -C ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 444 nvpair.h \ 248 ${DESTDIR}${INCLUDEDIR}/sys 249.endif 250 251symlinks: .PHONY .META 252 @${ECHO} "Setting up symlinks to kernel source tree..." 253.for i in ${LDIRS} 254 cd ${.CURDIR}/../sys/$i; \ 255 for h in *.h; do \ 256 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 257 done 258.endfor 259.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/evdev:Ndev/nand:Ndev/pci} 260 cd ${.CURDIR}/../sys/$i; \ 261 for h in *.h; do \ 262 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 263 done 264.endfor 265 cd ${.CURDIR}/../sys/dev/acpica; \ 266 for h in acpiio.h acpi_hpet.h; do \ 267 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/dev/acpica/$$h \ 268 ${DESTDIR}${INCLUDEDIR}/dev/acpica; \ 269 done 270 cd ${.CURDIR}/../sys/dev/agp; \ 271 for h in agpreg.h; do \ 272 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/dev/agp/$$h \ 273 ${DESTDIR}${INCLUDEDIR}/dev/agp; \ 274 done 275 cd ${.CURDIR}/../sys/dev/bktr; \ 276 for h in ioctl_*.h; do \ 277 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/dev/bktr/$$h \ 278 ${DESTDIR}${INCLUDEDIR}/dev/bktr; \ 279 done 280.if ${MK_NAND} != "no" 281 cd ${.CURDIR}/../sys/dev/nand; \ 282 for h in nandsim.h nand_dev.h; do \ 283 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/dev/nand/$$h \ 284 ${DESTDIR}${INCLUDEDIR}/dev/nand; \ 285 done 286.endif 287 cd ${.CURDIR}/../sys/dev/evdev; \ 288 for h in input.h input-event-codes.h uinput.h; do \ 289 ln -fs ../../../../sys/dev/evdev/$$h \ 290 ${DESTDIR}${INCLUDEDIR}/dev/evdev; \ 291 done 292 cd ${.CURDIR}/../sys/dev/pci; \ 293 for h in pcireg.h; do \ 294 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/dev/pci/$$h \ 295 ${DESTDIR}${INCLUDEDIR}/dev/pci; \ 296 done 297.for i in ${LSUBSUBDIRS} 298 cd ${.CURDIR}/../sys/$i; \ 299 for h in *.h; do \ 300 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 301 done 302.endfor 303.if ${MK_IPFILTER} != "no" 304 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 305 for h in *.h; do \ 306 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/contrib/ipfilter/netinet/$$h \ 307 ${DESTDIR}${INCLUDEDIR}/netinet; \ 308 done 309.endif 310.if ${MK_PF} != "no" 311 cd ${.CURDIR}/../sys/netpfil/pf; \ 312 for h in *.h; do \ 313 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/netpfil/pf/$$h \ 314 ${DESTDIR}${INCLUDEDIR}/netpfil/pf; \ 315 done 316.endif 317 cd ${.CURDIR}/../sys/crypto; \ 318 for h in rijndael/rijndael.h; do \ 319 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/crypto/$$h \ 320 ${DESTDIR}${INCLUDEDIR}/crypto; \ 321 done 322 cd ${.CURDIR}/../sys/opencrypto; \ 323 for h in *.h; do \ 324 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/opencrypto/$$h \ 325 ${DESTDIR}${INCLUDEDIR}/crypto; \ 326 done 327 cd ${.CURDIR}/../sys/${MACHINE}/include; \ 328 for h in *.h; do \ 329 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/${MACHINE}/include/$$h \ 330 ${DESTDIR}${INCLUDEDIR}/machine; \ 331 done 332.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc) 333 cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \ 334 for h in *.h; do \ 335 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/${MACHINE}/include/pc/$$h \ 336 ${DESTDIR}${INCLUDEDIR}/machine/pc; \ 337 done 338.endif 339.for _MARCH in ${_MARCHS} 340.if exists(${.CURDIR}/../sys/${_MARCH}/include) 341 ${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \ 342 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 343 cd ${.CURDIR}/../sys/${_MARCH}/include; \ 344 for h in *.h; do \ 345 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/${_MARCH}/include/$$h \ 346 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 347 done 348.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc) 349 ${INSTALL} -d ${TAG_ARGS} -o ${BINOWN} -g ${BINGRP} -m 755 \ 350 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 351 cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \ 352 for h in *.h; do \ 353 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/${_MARCH}/include/pc/$$h \ 354 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 355 done 356.endif 357.endif 358.endfor 359 cd ${.CURDIR}/../sys/fs/cd9660; \ 360 for h in *.h; do \ 361 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../../sys/fs/cd9660/$$h \ 362 ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \ 363 done 364 cd ${.CURDIR}/../sys/rpc; \ 365 for h in types.h; do \ 366 ${INSTALL_SYMLINK} ${TAG_ARGS} ../../../sys/rpc/$$h \ 367 ${DESTDIR}${INCLUDEDIR}/rpc; \ 368 done 369 370.include <bsd.prog.mk> 371 372installincludes: ${SHARED} 373${SHARED}: compat 374 375.if ${MACHINE} == "host" && !defined(_SKIP_BUILD) 376# we're here because we are building a sysroot... 377# we need MACHINE et al set correctly 378HOST_MACHINE!= uname -m 379HOST_MACHINE_ARCH!= uname -p 380MACHINE:= ${HOST_MACHINE} 381MACHINE_ARCH:= ${HOST_MACHINE_ARCH} 382.endif 383