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 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 uchar.h 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 stdatomic.h stdint.h \ 37 syslog.h ucontext.h 38 39LDIRS= bsm cam geom net net80211 netatalk netgraph netinet netinet6 \ 40 netipsec ${_netipx} netnatm netsmb \ 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/smbfs 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_BLUETOOTH} != "no" 76LSUBSUBDIRS+= netgraph/bluetooth/include 77.endif 78 79# XXX unconditionally needed by <netsmb/netbios.h> 80#.if ${MK_IPX} != "no" 81_netipx= netipx 82#.endif 83 84# Handle the #define aliases for libiconv 85.if ${MK_ICONV} == "yes" 86CLEANFILES+= _libiconv_compat.h 87INCS+= _libiconv_compat.h iconv.h 88_libiconv_compat.h: ${.CURDIR}/Makefile 89 echo "/* Indicate whether libiconv symbols are present */" > _libiconv_compat.h 90.if ${MK_LIBICONV_COMPAT} == "yes" 91 echo "#define __LIBICONV_COMPAT" >> _libiconv_compat.h 92.else 93 echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h 94.endif 95.endif 96 97 98# Define SHARED to indicate whether you want symbolic links to the system 99# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is 100# probably only useful for developers and should be avoided if you do not 101# wish to tie your /usr/include and /usr/src together. 102#SHARED= symlinks 103SHARED?= copies 104 105INCS+= osreldate.h 106 107NEWVERS_SH= ${.CURDIR}/../sys/conf/newvers.sh 108PARAM_H= ${.CURDIR}/../sys/sys/param.h 109MK_OSRELDATE_SH= ${.CURDIR}/mk-osreldate.sh 110 111osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH} 112 env ECHO="${ECHO}" \ 113 MAKE="${MAKE}" \ 114 NEWVERS_SH=${NEWVERS_SH} \ 115 PARAM_H=${PARAM_H} \ 116 sh ${MK_OSRELDATE_SH} 117 118.for i in ${LHDRS} 119INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 120.endfor 121.for i in ${MHDRS} 122INCSLINKS+= machine/$i ${INCLUDEDIR}/$i 123.endfor 124.for i in ${PHDRS} 125INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 126.endfor 127 128.if ${MACHINE} != ${MACHINE_CPUARCH} 129_MARCHS= ${MACHINE_CPUARCH} 130.endif 131.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 132_MARCHS+= x86 133.endif 134 135.include <bsd.prog.mk> 136 137installincludes: ${SHARED} 138${SHARED}: compat 139 140# Take care of stale directory-level symlinks. 141compat: 142.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto 143 if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \ 144 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \ 145 fi 146.endfor 147 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 148 -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ 149 -p ${DESTDIR}${INCLUDEDIR} 150.if ${MK_BIND_LIBS} != "no" 151 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 152 -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ 153 -p ${DESTDIR}${INCLUDEDIR} 154.endif 155 156copies: 157.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ 158 ${_MARCHS} 159.if exists(${DESTDIR}${INCLUDEDIR}/$i) 160 cd ${DESTDIR}${INCLUDEDIR}/$i; \ 161 for h in *.h; do \ 162 if [ -L $$h ]; then rm -f $$h; fi; \ 163 done 164.endif 165.endfor 166.for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS} 167 cd ${.CURDIR}/../sys; \ 168 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ 169 ${DESTDIR}${INCLUDEDIR}/$i 170.endfor 171 cd ${.CURDIR}/../sys/dev/acpica; \ 172 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \ 173 ${DESTDIR}${INCLUDEDIR}/dev/acpica 174 cd ${.CURDIR}/../sys/dev/agp; \ 175 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \ 176 ${DESTDIR}${INCLUDEDIR}/dev/agp 177 cd ${.CURDIR}/../sys/dev/bktr; \ 178 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \ 179 ${DESTDIR}${INCLUDEDIR}/dev/bktr 180.if ${MK_NAND} != "no" 181 cd ${.CURDIR}/../sys/dev/nand; \ 182 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \ 183 ${DESTDIR}${INCLUDEDIR}/dev/nand; \ 184 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \ 185 ${DESTDIR}${INCLUDEDIR}/dev/nand 186.endif 187 cd ${.CURDIR}/../sys/dev/pci; \ 188 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \ 189 ${DESTDIR}${INCLUDEDIR}/dev/pci 190 cd ${.CURDIR}/../sys/contrib/altq/altq; \ 191 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 192 ${DESTDIR}${INCLUDEDIR}/altq 193 cd ${.CURDIR}/../sys/fs/cd9660/; \ 194 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 195 ${DESTDIR}${INCLUDEDIR}/isofs/cd9660 196.if ${MK_IPFILTER} != "no" 197 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 198 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 199 ${DESTDIR}${INCLUDEDIR}/netinet 200.endif 201 cd ${.CURDIR}/../sys/crypto; \ 202 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ 203 ${DESTDIR}${INCLUDEDIR}/crypto 204 cd ${.CURDIR}/../sys/opencrypto; \ 205 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 206 ${DESTDIR}${INCLUDEDIR}/crypto 207 cd ${.CURDIR}/../sys/${MACHINE}/include; \ 208 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 209 ${DESTDIR}${INCLUDEDIR}/machine 210.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc) 211 cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \ 212 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 213 ${DESTDIR}${INCLUDEDIR}/machine/pc 214.endif 215.for _MARCH in ${_MARCHS} 216.if exists(${.CURDIR}/../sys/${_MARCH}/include) 217 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 218 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 219 cd ${.CURDIR}/../sys/${_MARCH}/include; \ 220 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 221 ${DESTDIR}${INCLUDEDIR}/${_MARCH} 222.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc) 223 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 224 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 225 cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \ 226 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 227 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc 228.endif 229.endif 230.endfor 231 cd ${.CURDIR}/../sys/rpc; \ 232 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ 233 ${DESTDIR}${INCLUDEDIR}/rpc 234 235symlinks: 236 @${ECHO} "Setting up symlinks to kernel source tree..." 237.for i in ${LDIRS} 238 cd ${.CURDIR}/../sys/$i; \ 239 for h in *.h; do \ 240 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 241 done 242.endfor 243.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} 244 cd ${.CURDIR}/../sys/$i; \ 245 for h in *.h; do \ 246 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 247 done 248.endfor 249 cd ${.CURDIR}/../sys/dev/acpica; \ 250 for h in acpiio.h; do \ 251 ln -fs ../../../../sys/dev/acpica/$$h \ 252 ${DESTDIR}${INCLUDEDIR}/dev/acpica; \ 253 done 254 cd ${.CURDIR}/../sys/dev/agp; \ 255 for h in agpreg.h; do \ 256 ln -fs ../../../../sys/dev/agp/$$h \ 257 ${DESTDIR}${INCLUDEDIR}/dev/agp; \ 258 done 259 cd ${.CURDIR}/../sys/dev/bktr; \ 260 for h in ioctl_*.h; do \ 261 ln -fs ../../../../sys/dev/bktr/$$h \ 262 ${DESTDIR}${INCLUDEDIR}/dev/bktr; \ 263 done 264.if ${MK_NAND} != "no" 265 cd ${.CURDIR}/../sys/dev/nand; \ 266 for h in nandsim.h nand_dev.h; do \ 267 ln -fs ../../../../sys/dev/nand/$$h \ 268 ${DESTDIR}${INCLUDEDIR}/dev/nand; \ 269 done 270.endif 271 cd ${.CURDIR}/../sys/dev/pci; \ 272 for h in pcireg.h; do \ 273 ln -fs ../../../../sys/dev/pci/$$h \ 274 ${DESTDIR}${INCLUDEDIR}/dev/pci; \ 275 done 276.for i in ${LSUBSUBDIRS} 277 cd ${.CURDIR}/../sys/$i; \ 278 for h in *.h; do \ 279 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 280 done 281.endfor 282 cd ${.CURDIR}/../sys/contrib/altq/altq; \ 283 for h in *.h; do \ 284 ln -fs ../../../sys/contrib/altq/altq/$$h \ 285 ${DESTDIR}${INCLUDEDIR}/altq; \ 286 done 287.if ${MK_IPFILTER} != "no" 288 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 289 for h in *.h; do \ 290 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \ 291 ${DESTDIR}${INCLUDEDIR}/netinet; \ 292 done 293.endif 294 cd ${.CURDIR}/../sys/crypto; \ 295 for h in rijndael/rijndael.h; do \ 296 ln -fs ../../../sys/crypto/$$h \ 297 ${DESTDIR}${INCLUDEDIR}/crypto; \ 298 done 299 cd ${.CURDIR}/../sys/opencrypto; \ 300 for h in *.h; do \ 301 ln -fs ../../../sys/opencrypto/$$h \ 302 ${DESTDIR}${INCLUDEDIR}/crypto; \ 303 done 304 cd ${.CURDIR}/../sys/${MACHINE}/include; \ 305 for h in *.h; do \ 306 ln -fs ../../../sys/${MACHINE}/include/$$h \ 307 ${DESTDIR}${INCLUDEDIR}/machine; \ 308 done 309.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc) 310 cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \ 311 for h in *.h; do \ 312 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \ 313 ${DESTDIR}${INCLUDEDIR}/machine/pc; \ 314 done 315.endif 316.for _MARCH in ${_MARCHS} 317.if exists(${.CURDIR}/../sys/${_MARCH}/include) 318 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 319 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 320 cd ${.CURDIR}/../sys/${_MARCH}/include; \ 321 for h in *.h; do \ 322 ln -fs ../../../sys/${_MARCH}/include/$$h \ 323 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 324 done 325.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc) 326 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 327 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 328 cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \ 329 for h in *.h; do \ 330 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \ 331 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 332 done 333.endif 334.endif 335.endfor 336 cd ${.CURDIR}/../sys/fs/cd9660; \ 337 for h in *.h; do \ 338 ln -fs ../../../../sys/fs/cd9660/$$h \ 339 ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \ 340 done 341 cd ${.CURDIR}/../sys/rpc; \ 342 for h in types.h; do \ 343 ln -fs ../../../sys/rpc/$$h \ 344 ${DESTDIR}${INCLUDEDIR}/rpc; \ 345 done 346