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