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 107osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh ${.CURDIR}/../sys/sys/param.h \ 108 ${.CURDIR}/Makefile 109 @${ECHO} creating osreldate.h from newvers.sh 110 @MAKE=${MAKE}; \ 111 PARAMFILE=${.CURDIR}/../sys/sys/param.h; \ 112 . ${.CURDIR}/../sys/conf/newvers.sh; \ 113 echo "$$COPYRIGHT" > osreldate.h; \ 114 echo "#ifdef _KERNEL" >> osreldate.h; \ 115 echo "#error \"<osreldate.h> cannot be used in the kernel, use <sys/param.h>\"" >> osreldate.h; \ 116 echo "#else" >> osreldate.h; \ 117 echo "#undef __FreeBSD_version" >> osreldate.h; \ 118 echo "#define __FreeBSD_version $$RELDATE" >> osreldate.h; \ 119 echo "#endif" >> osreldate.h 120 121.for i in ${LHDRS} 122INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 123.endfor 124.for i in ${MHDRS} 125INCSLINKS+= machine/$i ${INCLUDEDIR}/$i 126.endfor 127.for i in ${PHDRS} 128INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 129.endfor 130 131.if ${MACHINE} != ${MACHINE_CPUARCH} 132_MARCHS= ${MACHINE_CPUARCH} 133.endif 134.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64" 135_MARCHS+= x86 136.endif 137 138.include <bsd.prog.mk> 139 140installincludes: ${SHARED} 141${SHARED}: compat 142 143# Take care of stale directory-level symlinks. 144compat: 145.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto 146 if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \ 147 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \ 148 fi 149.endfor 150 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 151 -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ 152 -p ${DESTDIR}${INCLUDEDIR} 153.if ${MK_BIND_LIBS} != "no" 154 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 155 -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ 156 -p ${DESTDIR}${INCLUDEDIR} 157.endif 158 159copies: 160.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \ 161 ${_MARCHS} 162.if exists(${DESTDIR}${INCLUDEDIR}/$i) 163 cd ${DESTDIR}${INCLUDEDIR}/$i; \ 164 for h in *.h; do \ 165 if [ -L $$h ]; then rm -f $$h; fi; \ 166 done 167.endif 168.endfor 169.for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS} 170 cd ${.CURDIR}/../sys; \ 171 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ 172 ${DESTDIR}${INCLUDEDIR}/$i 173.endfor 174 cd ${.CURDIR}/../sys/dev/acpica; \ 175 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \ 176 ${DESTDIR}${INCLUDEDIR}/dev/acpica 177 cd ${.CURDIR}/../sys/dev/agp; \ 178 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \ 179 ${DESTDIR}${INCLUDEDIR}/dev/agp 180 cd ${.CURDIR}/../sys/dev/bktr; \ 181 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \ 182 ${DESTDIR}${INCLUDEDIR}/dev/bktr 183.if ${MK_NAND} != "no" 184 cd ${.CURDIR}/../sys/dev/nand; \ 185 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \ 186 ${DESTDIR}${INCLUDEDIR}/dev/nand; \ 187 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \ 188 ${DESTDIR}${INCLUDEDIR}/dev/nand 189.endif 190 cd ${.CURDIR}/../sys/dev/pci; \ 191 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \ 192 ${DESTDIR}${INCLUDEDIR}/dev/pci 193 cd ${.CURDIR}/../sys/contrib/altq/altq; \ 194 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 195 ${DESTDIR}${INCLUDEDIR}/altq 196 cd ${.CURDIR}/../sys/fs/cd9660/; \ 197 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 198 ${DESTDIR}${INCLUDEDIR}/isofs/cd9660 199.if ${MK_IPFILTER} != "no" 200 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 201 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 202 ${DESTDIR}${INCLUDEDIR}/netinet 203.endif 204 cd ${.CURDIR}/../sys/crypto; \ 205 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ 206 ${DESTDIR}${INCLUDEDIR}/crypto 207 cd ${.CURDIR}/../sys/opencrypto; \ 208 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 209 ${DESTDIR}${INCLUDEDIR}/crypto 210 cd ${.CURDIR}/../sys/${MACHINE}/include; \ 211 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 212 ${DESTDIR}${INCLUDEDIR}/machine 213.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc) 214 cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \ 215 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 216 ${DESTDIR}${INCLUDEDIR}/machine/pc 217.endif 218.for _MARCH in ${_MARCHS} 219.if exists(${.CURDIR}/../sys/${_MARCH}/include) 220 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 221 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 222 cd ${.CURDIR}/../sys/${_MARCH}/include; \ 223 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 224 ${DESTDIR}${INCLUDEDIR}/${_MARCH} 225.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc) 226 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 227 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 228 cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \ 229 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 230 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc 231.endif 232.endif 233.endfor 234 cd ${.CURDIR}/../sys/rpc; \ 235 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \ 236 ${DESTDIR}${INCLUDEDIR}/rpc 237 238symlinks: 239 @${ECHO} "Setting up symlinks to kernel source tree..." 240.for i in ${LDIRS} 241 cd ${.CURDIR}/../sys/$i; \ 242 for h in *.h; do \ 243 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 244 done 245.endfor 246.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} 247 cd ${.CURDIR}/../sys/$i; \ 248 for h in *.h; do \ 249 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 250 done 251.endfor 252 cd ${.CURDIR}/../sys/dev/acpica; \ 253 for h in acpiio.h; do \ 254 ln -fs ../../../../sys/dev/acpica/$$h \ 255 ${DESTDIR}${INCLUDEDIR}/dev/acpica; \ 256 done 257 cd ${.CURDIR}/../sys/dev/agp; \ 258 for h in agpreg.h; do \ 259 ln -fs ../../../../sys/dev/agp/$$h \ 260 ${DESTDIR}${INCLUDEDIR}/dev/agp; \ 261 done 262 cd ${.CURDIR}/../sys/dev/bktr; \ 263 for h in ioctl_*.h; do \ 264 ln -fs ../../../../sys/dev/bktr/$$h \ 265 ${DESTDIR}${INCLUDEDIR}/dev/bktr; \ 266 done 267.if ${MK_NAND} != "no" 268 cd ${.CURDIR}/../sys/dev/nand; \ 269 for h in nandsim.h nand_dev.h; do \ 270 ln -fs ../../../../sys/dev/nand/$$h \ 271 ${DESTDIR}${INCLUDEDIR}/dev/nand; \ 272 done 273.endif 274 cd ${.CURDIR}/../sys/dev/pci; \ 275 for h in pcireg.h; do \ 276 ln -fs ../../../../sys/dev/pci/$$h \ 277 ${DESTDIR}${INCLUDEDIR}/dev/pci; \ 278 done 279.for i in ${LSUBSUBDIRS} 280 cd ${.CURDIR}/../sys/$i; \ 281 for h in *.h; do \ 282 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 283 done 284.endfor 285 cd ${.CURDIR}/../sys/contrib/altq/altq; \ 286 for h in *.h; do \ 287 ln -fs ../../../sys/contrib/altq/altq/$$h \ 288 ${DESTDIR}${INCLUDEDIR}/altq; \ 289 done 290.if ${MK_IPFILTER} != "no" 291 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 292 for h in *.h; do \ 293 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \ 294 ${DESTDIR}${INCLUDEDIR}/netinet; \ 295 done 296.endif 297 cd ${.CURDIR}/../sys/crypto; \ 298 for h in rijndael/rijndael.h; do \ 299 ln -fs ../../../sys/crypto/$$h \ 300 ${DESTDIR}${INCLUDEDIR}/crypto; \ 301 done 302 cd ${.CURDIR}/../sys/opencrypto; \ 303 for h in *.h; do \ 304 ln -fs ../../../sys/opencrypto/$$h \ 305 ${DESTDIR}${INCLUDEDIR}/crypto; \ 306 done 307 cd ${.CURDIR}/../sys/${MACHINE}/include; \ 308 for h in *.h; do \ 309 ln -fs ../../../sys/${MACHINE}/include/$$h \ 310 ${DESTDIR}${INCLUDEDIR}/machine; \ 311 done 312.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc) 313 cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \ 314 for h in *.h; do \ 315 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \ 316 ${DESTDIR}${INCLUDEDIR}/machine/pc; \ 317 done 318.endif 319.for _MARCH in ${_MARCHS} 320.if exists(${.CURDIR}/../sys/${_MARCH}/include) 321 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 322 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 323 cd ${.CURDIR}/../sys/${_MARCH}/include; \ 324 for h in *.h; do \ 325 ln -fs ../../../sys/${_MARCH}/include/$$h \ 326 ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \ 327 done 328.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc) 329 ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \ 330 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 331 cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \ 332 for h in *.h; do \ 333 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \ 334 ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \ 335 done 336.endif 337.endif 338.endfor 339 cd ${.CURDIR}/../sys/fs/cd9660; \ 340 for h in *.h; do \ 341 ln -fs ../../../../sys/fs/cd9660/$$h \ 342 ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \ 343 done 344 cd ${.CURDIR}/../sys/rpc; \ 345 for h in types.h; do \ 346 ln -fs ../../../sys/rpc/$$h \ 347 ${DESTDIR}${INCLUDEDIR}/rpc; \ 348 done 349