]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - include/Makefile
MFC r363988:
[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 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         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
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/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 ${MK_BLUETOOTH} != "no"
64 LSUBSUBDIRS+=   netgraph/bluetooth/include
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 # XXX unconditionally needed by <netsmb/netbios.h>
85 #.if ${MK_IPX} != "no"
86 _netipx=        netipx
87 #.endif
88
89 .if ${MK_NCP} != "no"
90 _netncp=        netncp
91 _fs_nwfs=       fs/nwfs
92 .endif
93
94 .if ${MK_USB} != "no"
95 LSUBDIRS+=      dev/usb
96 .endif
97
98 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
99 _dev_powermac_nvram=    dev/powermac_nvram
100 .endif
101
102 # Define SHARED to indicate whether you want symbolic links to the system
103 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
104 # probably only useful for developers and should be avoided if you do not
105 # wish to tie your /usr/include and /usr/src together.
106 #SHARED=        symlinks
107 SHARED?=        copies
108
109 INCS+=  osreldate.h
110
111 SYSDIR=                 ${.CURDIR}/../sys
112 NEWVERS_SH=             ${SYSDIR}/conf/newvers.sh
113 PARAM_H=                ${SYSDIR}/sys/param.h
114 MK_OSRELDATE_SH=        ${.CURDIR}/mk-osreldate.sh
115
116 osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH}
117         env ECHO="${ECHO}" \
118             MAKE="${MAKE}" \
119             NEWVERS_SH=${NEWVERS_SH} \
120             PARAM_H=${PARAM_H} \
121             SYSDIR=${SYSDIR} \
122             sh ${MK_OSRELDATE_SH}
123
124 .for i in ${LHDRS}
125 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
126 .endfor
127 .for i in ${MHDRS}
128 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
129 .endfor
130 .for i in ${PHDRS}
131 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
132 .endfor
133
134 .if ${MACHINE} != ${MACHINE_CPUARCH}
135 _MARCHS=        ${MACHINE_CPUARCH}
136 .endif
137 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
138 _MARCHS+=       x86
139 .endif
140
141 .include <bsd.prog.mk>
142
143 installincludes: ${SHARED}
144 ${SHARED}: compat
145
146 # Take care of stale directory-level symlinks.
147 compat:
148 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
149         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
150                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
151         fi
152 .endfor
153         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
154             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
155             -p ${DESTDIR}${INCLUDEDIR}
156 .if ${MK_BIND_LIBS} != "no"
157         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
158             -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
159             -p ${DESTDIR}${INCLUDEDIR}
160 .endif
161
162 copies:
163 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
164         ${_MARCHS}
165 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
166         cd ${DESTDIR}${INCLUDEDIR}/$i; \
167         for h in *.h; do \
168                 if [ -L $$h ]; then rm -f $$h; fi; \
169         done
170 .endif
171 .endfor
172 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci} ${LSUBSUBDIRS}
173         cd ${.CURDIR}/../sys; \
174         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
175             ${DESTDIR}${INCLUDEDIR}/$i
176 .endfor
177         cd ${.CURDIR}/../sys/dev/acpica; \
178         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
179             ${DESTDIR}${INCLUDEDIR}/dev/acpica
180         cd ${.CURDIR}/../sys/dev/agp; \
181         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
182             ${DESTDIR}${INCLUDEDIR}/dev/agp
183         cd ${.CURDIR}/../sys/dev/bktr; \
184         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
185             ${DESTDIR}${INCLUDEDIR}/dev/bktr
186         cd ${.CURDIR}/../sys/dev/pci; \
187         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
188             ${DESTDIR}${INCLUDEDIR}/dev/pci
189         cd ${.CURDIR}/../sys/contrib/altq/altq; \
190         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
191             ${DESTDIR}${INCLUDEDIR}/altq
192         cd ${.CURDIR}/../sys/fs/cd9660/; \
193         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
194             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
195 .if ${MK_IPFILTER} != "no"
196         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
197         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
198             ${DESTDIR}${INCLUDEDIR}/netinet
199 .endif
200         cd ${.CURDIR}/../sys/contrib/pf/net; \
201         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
202             ${DESTDIR}${INCLUDEDIR}/net
203         cd ${.CURDIR}/../sys/crypto; \
204         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
205             ${DESTDIR}${INCLUDEDIR}/crypto
206         cd ${.CURDIR}/../sys/opencrypto; \
207         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
208             ${DESTDIR}${INCLUDEDIR}/crypto
209         cd ${.CURDIR}/../sys/${MACHINE}/include; \
210         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
211             ${DESTDIR}${INCLUDEDIR}/machine
212 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
213         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
214         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
215             ${DESTDIR}${INCLUDEDIR}/machine/pc
216 .endif
217 .for _MARCH in ${_MARCHS}
218 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
219         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
220             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
221         cd ${.CURDIR}/../sys/${_MARCH}/include; \
222         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
223             ${DESTDIR}${INCLUDEDIR}/${_MARCH}
224 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
225         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
226             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
227         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
228         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
229             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
230 .endif
231 .endif
232 .endfor
233         cd ${.CURDIR}/../sys/rpc; \
234         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
235             ${DESTDIR}${INCLUDEDIR}/rpc
236
237 symlinks:
238         @${ECHO} "Setting up symlinks to kernel source tree..."
239 .for i in ${LDIRS}
240         cd ${.CURDIR}/../sys/$i; \
241         for h in *.h; do \
242                 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
243         done
244 .endfor
245 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci}
246         cd ${.CURDIR}/../sys/$i; \
247         for h in *.h; do \
248                 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
249         done
250 .endfor
251         cd ${.CURDIR}/../sys/dev/acpica; \
252         for h in acpiio.h; do \
253                 ln -fs ../../../../sys/dev/acpica/$$h \
254                     ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
255         done
256         cd ${.CURDIR}/../sys/dev/agp; \
257         for h in agpreg.h; do \
258                 ln -fs ../../../../sys/dev/agp/$$h \
259                     ${DESTDIR}${INCLUDEDIR}/dev/agp; \
260         done
261         cd ${.CURDIR}/../sys/dev/bktr; \
262         for h in ioctl_*.h; do \
263                 ln -fs ../../../../sys/dev/bktr/$$h \
264                     ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
265         done
266         cd ${.CURDIR}/../sys/dev/pci; \
267         for h in pcireg.h; do \
268                 ln -fs ../../../../sys/dev/pci/$$h \
269                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
270         done
271 .for i in ${LSUBSUBDIRS}
272         cd ${.CURDIR}/../sys/$i; \
273         for h in *.h; do \
274                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
275         done
276 .endfor
277         cd ${.CURDIR}/../sys/contrib/altq/altq; \
278         for h in *.h; do \
279                 ln -fs ../../../sys/contrib/altq/altq/$$h \
280                     ${DESTDIR}${INCLUDEDIR}/altq; \
281         done
282 .if ${MK_IPFILTER} != "no"
283         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
284         for h in *.h; do \
285                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
286                     ${DESTDIR}${INCLUDEDIR}/netinet; \
287         done
288 .endif
289         cd ${.CURDIR}/../sys/contrib/pf/net; \
290         for h in *.h; do \
291                 ln -fs ../../../sys/contrib/pf/net/$$h \
292                     ${DESTDIR}${INCLUDEDIR}/net; \
293         done
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