1# @(#)Makefile 8.2 (Berkeley) 1/4/94 2# $FreeBSD$ 3# 4# Doing a "make install" builds /usr/include. 5 6CLEANFILES= osreldate.h version vers.c 7SUBDIR= arpa protocols rpcsvc rpc 8INCS= a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \ 9 db.h \ 10 dirent.h dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \ 11 fts.h ftw.h getopt.h glob.h grp.h \ 12 hesiod.h histedit.h ieeefp.h ifaddrs.h \ 13 inttypes.h iso646.h kenv.h langinfo.h libgen.h limits.h link.h \ 14 locale.h malloc.h memory.h monetary.h mpool.h ndbm.h netconfig.h \ 15 netdb.h nl_types.h nlist.h nss.h nsswitch.h objformat.h paths.h \ 16 proc_service.h pthread.h \ 17 pthread_np.h pwd.h ranlib.h readpassphrase.h regex.h regexp.h \ 18 resolv.h runefile.h runetype.h search.h setjmp.h sgtty.h \ 19 signal.h stab.h \ 20 stdbool.h stddef.h stdio.h stdlib.h string.h stringlist.h \ 21 strings.h sysexits.h tar.h tgmath.h \ 22 time.h timeconv.h timers.h ttyent.h \ 23 ulimit.h unistd.h utime.h utmp.h uuid.h varargs.h vis.h wchar.h \ 24 wctype.h wordexp.h 25 26MHDRS= float.h floatingpoint.h stdarg.h 27 28# posix4/mqueue.h is useless without an implementation and isn't installed: 29PHDRS= sched.h semaphore.h _semaphore.h # mqueue.h 30 31LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \ 32 termios.h ucontext.h 33 34LDIRS= cam geom net net80211 netatalk netatm netgraph netinet netinet6 \ 35 netipsec netipx netkey netnatm netncp netsmb nfs nfsclient nfsserver \ 36 pccard posix4 sys vm 37 38LSUBDIRS= cam/scsi \ 39 dev/acpica dev/an dev/bktr dev/firewire \ 40 dev/ic dev/iicbus ${_dev_ieee488} dev/ofw \ 41 dev/pbio dev/ppbus dev/smbus dev/usb dev/wi dev/utopia \ 42 fs/devfs fs/fdescfs fs/fifofs fs/msdosfs fs/ntfs fs/nullfs \ 43 fs/nwfs fs/portalfs fs/procfs fs/smbfs fs/udf fs/umapfs \ 44 fs/unionfs \ 45 geom/concat geom/gate geom/label geom/mirror geom/nop geom/raid3 \ 46 geom/shsec geom/stripe \ 47 isofs/cd9660 \ 48 netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \ 49 netgraph/atm netgraph/netflow \ 50 security/mac_biba security/mac_bsdextended security/mac_lomac \ 51 security/mac_mls security/mac_partition \ 52 ufs/ffs ufs/ufs 53 54.if !defined(NO_GPIB) 55_dev_ieee488= dev/ieee488 56.endif 57 58.if !defined(NO_BLUETOOTH) 59LSUBSUBDIRS= netgraph/bluetooth/include 60.endif 61 62# Define SHARED to indicate whether you want symbolic links to the system 63# source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is 64# probably only useful for developers and should be avoided if you do not 65# wish to tie your /usr/include and /usr/src together. 66#SHARED= symlinks 67SHARED?= copies 68 69INCS+= osreldate.h 70 71osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh \ 72 ${.CURDIR}/../sys/sys/param.h \ 73 ${.CURDIR}/Makefile 74 @${ECHO} creating osreldate.h from newvers.sh 75 @setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \ 76 MAKE=${MAKE} . ${.CURDIR}/../sys/conf/newvers.sh; \ 77 echo "$$COPYRIGHT" > osreldate.h; \ 78 echo "#ifdef _KERNEL" >> osreldate.h; \ 79 echo '#error "<osreldate.h> cannot be used in the kernel, use <sys/param.h>"' >> osreldate.h; \ 80 echo "#else" >> osreldate.h; \ 81 echo \#'undef __FreeBSD_version' >> osreldate.h; \ 82 echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h; \ 83 echo "#endif" >> osreldate.h 84 85.for i in ${LHDRS} 86INCSLINKS+= sys/$i ${INCLUDEDIR}/$i 87.endfor 88.for i in ${MHDRS} 89INCSLINKS+= machine/$i ${INCLUDEDIR}/$i 90.endfor 91.for i in ${PHDRS} 92INCSLINKS+= posix4/$i ${INCLUDEDIR}/$i 93.endfor 94 95.include <bsd.prog.mk> 96 97installincludes: ${SHARED} 98${SHARED}: compat 99 100# Take care of stale directory-level symlinks. 101compat: 102.for i in ${LDIRS} ${LSUBDIRS} machine crypto 103 if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \ 104 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \ 105 fi 106.endfor 107 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 108 -f ${.CURDIR}/../etc/mtree/BSD.include.dist \ 109 -p ${DESTDIR}${INCLUDEDIR} 110.if defined(WITH_BIND_LIBS) && !defined(NO_BIND) 111 mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \ 112 -f ${.CURDIR}/../etc/mtree/BIND.include.dist \ 113 -p ${DESTDIR}${INCLUDEDIR} 114.endif 115 116copies: 117.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc 118.if exists(${DESTDIR}${INCLUDEDIR}/$i) 119 cd ${DESTDIR}${INCLUDEDIR}/$i; \ 120 for h in *.h; do \ 121 if [ -L $$h ]; then rm -f $$h; fi; \ 122 done 123.endif 124.endfor 125.for i in ${LDIRS} ${LSUBDIRS:Ndev/acpica:Ndev/bktr} ${LSUBSUBDIRS} 126 cd ${.CURDIR}/../sys; \ 127 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \ 128 ${DESTDIR}${INCLUDEDIR}/$i 129.endfor 130 cd ${.CURDIR}/../sys/dev/acpica; \ 131 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \ 132 ${DESTDIR}${INCLUDEDIR}/dev/acpica 133 cd ${.CURDIR}/../sys/dev/bktr; \ 134 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \ 135 ${DESTDIR}${INCLUDEDIR}/dev/bktr 136 cd ${.CURDIR}/../sys/contrib/altq/altq; \ 137 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 138 ${DESTDIR}${INCLUDEDIR}/altq 139 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 140 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 141 ${DESTDIR}${INCLUDEDIR}/netinet 142 cd ${.CURDIR}/../sys/contrib/pf/net; \ 143 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 144 ${DESTDIR}${INCLUDEDIR}/net 145 cd ${.CURDIR}/../sys/crypto; \ 146 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \ 147 ${DESTDIR}${INCLUDEDIR}/crypto 148 cd ${.CURDIR}/../sys/opencrypto; \ 149 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 150 ${DESTDIR}${INCLUDEDIR}/crypto 151 cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \ 152 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 153 ${DESTDIR}${INCLUDEDIR}/machine 154.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc) 155 cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc; \ 156 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \ 157 ${DESTDIR}${INCLUDEDIR}/machine/pc 158.endif 159 160symlinks: 161 @${ECHO} "Setting up symlinks to kernel source tree..." 162.for i in ${LDIRS} 163 cd ${.CURDIR}/../sys/$i; \ 164 for h in *.h; do \ 165 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 166 done 167.endfor 168.for i in ${LSUBDIRS:Ndev/acpica:Ndev/bktr} 169 cd ${.CURDIR}/../sys/$i; \ 170 for h in *.h; do \ 171 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 172 done 173.endfor 174 cd ${.CURDIR}/../sys/dev/acpica; \ 175 for h in acpiio.h; do \ 176 ln -fs ../../../../sys/dev/acpica/$$h \ 177 ${DESTDIR}${INCLUDEDIR}/dev/acpica; \ 178 done 179 cd ${.CURDIR}/../sys/dev/bktr; \ 180 for h in ioctl_*.h; do \ 181 ln -fs ../../../../sys/dev/bktr/$$h \ 182 ${DESTDIR}${INCLUDEDIR}/dev/bktr; \ 183 done 184.for i in ${LSUBSUBDIRS} 185 cd ${.CURDIR}/../sys/$i; \ 186 for h in *.h; do \ 187 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \ 188 done 189.endfor 190 cd ${.CURDIR}/../sys/contrib/altq/altq; \ 191 for h in *.h; do \ 192 ln -fs ../../../sys/contrib/altq/altq/$$h \ 193 ${DESTDIR}${INCLUDEDIR}/altq; \ 194 done 195 cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \ 196 for h in *.h; do \ 197 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \ 198 ${DESTDIR}${INCLUDEDIR}/netinet; \ 199 done 200 cd ${.CURDIR}/../sys/contrib/pf/net; \ 201 for h in *.h; do \ 202 ln -fs ../../../sys/contrib/pf/net/$$h \ 203 ${DESTDIR}${INCLUDEDIR}/net; \ 204 done 205 cd ${.CURDIR}/../sys/crypto; \ 206 for h in rijndael/rijndael.h; do \ 207 ln -fs ../../../sys/crypto/$$h \ 208 ${DESTDIR}${INCLUDEDIR}/crypto; \ 209 done 210 cd ${.CURDIR}/../sys/opencrypto; \ 211 for h in *.h; do \ 212 ln -fs ../../../sys/opencrypto/$$h \ 213 ${DESTDIR}${INCLUDEDIR}/crypto; \ 214 done 215 cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \ 216 for h in *.h; do \ 217 ln -fs ../../../sys/${MACHINE_ARCH}/include/$$h \ 218 ${DESTDIR}${INCLUDEDIR}/machine; \ 219 done 220.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc) 221 cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc; \ 222 for h in *.h; do \ 223 ln -fs ../../../../sys/${MACHINE_ARCH}/include/pc/$$h \ 224 ${DESTDIR}${INCLUDEDIR}/machine/pc; \ 225 done 226.endif 227