]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - include/Makefile
MFC r272671:
[FreeBSD/stable/9.git] / include / Makefile
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
8 CLEANFILES= osreldate.h version vers.c
9 SUBDIR= arpa protocols rpcsvc rpc xlocale
10 INCS=   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 \
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 \
23         stdbool.h stddef.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
30 INCS+=  vis.h
31
32 MHDRS=  float.h floatingpoint.h stdarg.h
33
34 PHDRS=  sched.h _semaphore.h
35
36 LHDRS=  aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \
37         ucontext.h
38
39 LDIRS=  bsm cam geom net net80211 netatalk netgraph netinet netinet6 \
40         netipsec ${_netipx} netnatm ${_netncp} netsmb \
41         nfs nfsclient nfsserver \
42         sys vm
43
44 LSUBDIRS=       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/fifofs fs/msdosfs fs/nfs fs/ntfs fs/nullfs \
51         ${_fs_nwfs} fs/portalfs 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
61 LSUBSUBDIRS=    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_GSSAPI} != "no"
72 SUBDIR+=        gssapi
73 INCS+=          gssapi.h
74 .endif
75
76 .if ${MK_HESIOD} != "no"
77 INCS+=  hesiod.h
78 .endif
79
80 .if ${MK_ICONV} != "no"
81 INCS+=  iconv.h
82 .endif
83
84 .if ${MK_BLUETOOTH} != "no"
85 LSUBSUBDIRS+=   netgraph/bluetooth/include
86 .endif
87
88 # XXX unconditionally needed by <netsmb/netbios.h>
89 #.if ${MK_IPX} != "no"
90 _netipx=        netipx
91 #.endif
92
93 .if ${MK_NCP} != "no"
94 _netncp=        netncp
95 _fs_nwfs=       fs/nwfs
96 .endif
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
103 SHARED?=        copies
104
105 INCS+=  osreldate.h
106
107 SYSDIR=                 ${.CURDIR}/../sys
108 NEWVERS_SH=             ${SYSDIR}/conf/newvers.sh
109 PARAM_H=                ${SYSDIR}/sys/param.h
110 MK_OSRELDATE_SH=        ${.CURDIR}/mk-osreldate.sh
111
112 osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH}
113         env ECHO="${ECHO}" \
114             MAKE="${MAKE}" \
115             NEWVERS_SH=${NEWVERS_SH} \
116             PARAM_H=${PARAM_H} \
117             SYSDIR=${SYSDIR} \
118             sh ${MK_OSRELDATE_SH}
119
120 .for i in ${LHDRS}
121 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
122 .endfor
123 .for i in ${MHDRS}
124 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
125 .endfor
126 .for i in ${PHDRS}
127 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
128 .endfor
129
130 .if ${MACHINE} != ${MACHINE_CPUARCH}
131 _MARCHS=        ${MACHINE_CPUARCH}
132 .endif
133 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
134 _MARCHS+=       x86
135 .endif
136
137 .include <bsd.prog.mk>
138
139 installincludes: ${SHARED}
140 ${SHARED}: compat
141
142 # Take care of stale directory-level symlinks.
143 compat:
144 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
145         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
146                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
147         fi
148 .endfor
149         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
150             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
151             -p ${DESTDIR}${INCLUDEDIR}
152 .if ${MK_BIND_LIBS} != "no"
153         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
154             -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
155             -p ${DESTDIR}${INCLUDEDIR}
156 .endif
157
158 copies:
159 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
160         ${_MARCHS}
161 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
162         cd ${DESTDIR}${INCLUDEDIR}/$i; \
163         for h in *.h; do \
164                 if [ -L $$h ]; then rm -f $$h; fi; \
165         done
166 .endif
167 .endfor
168 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci} ${LSUBSUBDIRS}
169         cd ${.CURDIR}/../sys; \
170         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
171             ${DESTDIR}${INCLUDEDIR}/$i
172 .endfor
173         cd ${.CURDIR}/../sys/dev/acpica; \
174         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
175             ${DESTDIR}${INCLUDEDIR}/dev/acpica
176         cd ${.CURDIR}/../sys/dev/agp; \
177         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
178             ${DESTDIR}${INCLUDEDIR}/dev/agp
179         cd ${.CURDIR}/../sys/dev/bktr; \
180         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
181             ${DESTDIR}${INCLUDEDIR}/dev/bktr
182         cd ${.CURDIR}/../sys/dev/pci; \
183         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
184             ${DESTDIR}${INCLUDEDIR}/dev/pci
185         cd ${.CURDIR}/../sys/contrib/altq/altq; \
186         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
187             ${DESTDIR}${INCLUDEDIR}/altq
188         cd ${.CURDIR}/../sys/fs/cd9660/; \
189         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
190             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
191 .if ${MK_IPFILTER} != "no"
192         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
193         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
194             ${DESTDIR}${INCLUDEDIR}/netinet
195 .endif
196         cd ${.CURDIR}/../sys/contrib/pf/net; \
197         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
198             ${DESTDIR}${INCLUDEDIR}/net
199         cd ${.CURDIR}/../sys/crypto; \
200         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
201             ${DESTDIR}${INCLUDEDIR}/crypto
202         cd ${.CURDIR}/../sys/opencrypto; \
203         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
204             ${DESTDIR}${INCLUDEDIR}/crypto
205         cd ${.CURDIR}/../sys/${MACHINE}/include; \
206         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
207             ${DESTDIR}${INCLUDEDIR}/machine
208 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
209         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
210         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
211             ${DESTDIR}${INCLUDEDIR}/machine/pc
212 .endif
213 .for _MARCH in ${_MARCHS}
214 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
215         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
216             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
217         cd ${.CURDIR}/../sys/${_MARCH}/include; \
218         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
219             ${DESTDIR}${INCLUDEDIR}/${_MARCH}
220 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
221         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
222             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
223         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
224         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
225             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
226 .endif
227 .endif
228 .endfor
229         cd ${.CURDIR}/../sys/rpc; \
230         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
231             ${DESTDIR}${INCLUDEDIR}/rpc
232
233 symlinks:
234         @${ECHO} "Setting up symlinks to kernel source tree..."
235 .for i in ${LDIRS}
236         cd ${.CURDIR}/../sys/$i; \
237         for h in *.h; do \
238                 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
239         done
240 .endfor
241 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci}
242         cd ${.CURDIR}/../sys/$i; \
243         for h in *.h; do \
244                 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
245         done
246 .endfor
247         cd ${.CURDIR}/../sys/dev/acpica; \
248         for h in acpiio.h; do \
249                 ln -fs ../../../../sys/dev/acpica/$$h \
250                     ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
251         done
252         cd ${.CURDIR}/../sys/dev/agp; \
253         for h in agpreg.h; do \
254                 ln -fs ../../../../sys/dev/agp/$$h \
255                     ${DESTDIR}${INCLUDEDIR}/dev/agp; \
256         done
257         cd ${.CURDIR}/../sys/dev/bktr; \
258         for h in ioctl_*.h; do \
259                 ln -fs ../../../../sys/dev/bktr/$$h \
260                     ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
261         done
262         cd ${.CURDIR}/../sys/dev/pci; \
263         for h in pcireg.h; do \
264                 ln -fs ../../../../sys/dev/pci/$$h \
265                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
266         done
267 .for i in ${LSUBSUBDIRS}
268         cd ${.CURDIR}/../sys/$i; \
269         for h in *.h; do \
270                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
271         done
272 .endfor
273         cd ${.CURDIR}/../sys/contrib/altq/altq; \
274         for h in *.h; do \
275                 ln -fs ../../../sys/contrib/altq/altq/$$h \
276                     ${DESTDIR}${INCLUDEDIR}/altq; \
277         done
278 .if ${MK_IPFILTER} != "no"
279         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
280         for h in *.h; do \
281                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
282                     ${DESTDIR}${INCLUDEDIR}/netinet; \
283         done
284 .endif
285         cd ${.CURDIR}/../sys/contrib/pf/net; \
286         for h in *.h; do \
287                 ln -fs ../../../sys/contrib/pf/net/$$h \
288                     ${DESTDIR}${INCLUDEDIR}/net; \
289         done
290         cd ${.CURDIR}/../sys/crypto; \
291         for h in rijndael/rijndael.h; do \
292                 ln -fs ../../../sys/crypto/$$h \
293                     ${DESTDIR}${INCLUDEDIR}/crypto; \
294         done
295         cd ${.CURDIR}/../sys/opencrypto; \
296         for h in *.h; do \
297                 ln -fs ../../../sys/opencrypto/$$h \
298                     ${DESTDIR}${INCLUDEDIR}/crypto; \
299         done
300         cd ${.CURDIR}/../sys/${MACHINE}/include; \
301         for h in *.h; do \
302                 ln -fs ../../../sys/${MACHINE}/include/$$h \
303                     ${DESTDIR}${INCLUDEDIR}/machine; \
304         done
305 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
306         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
307         for h in *.h; do \
308                 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
309                     ${DESTDIR}${INCLUDEDIR}/machine/pc; \
310         done
311 .endif
312 .for _MARCH in ${_MARCHS}
313 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
314         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
315             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
316         cd ${.CURDIR}/../sys/${_MARCH}/include; \
317         for h in *.h; do \
318                 ln -fs ../../../sys/${_MARCH}/include/$$h \
319                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
320         done
321 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
322         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
323             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
324         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
325         for h in *.h; do \
326                 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
327                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
328         done
329 .endif
330 .endif
331 .endfor
332         cd ${.CURDIR}/../sys/fs/cd9660; \
333         for h in *.h; do \
334                 ln -fs ../../../../sys/fs/cd9660/$$h \
335                     ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
336         done
337         cd ${.CURDIR}/../sys/rpc; \
338         for h in types.h; do \
339                 ln -fs ../../../sys/rpc/$$h \
340                     ${DESTDIR}${INCLUDEDIR}/rpc; \
341         done