]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/Makefile
MFV illumos
[FreeBSD/FreeBSD.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 <src.opts.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 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 stdatomic.h stdint.h \
37         syslog.h ucontext.h
38
39 LDIRS=  bsm cam geom net net80211 netgraph netinet netinet6 \
40         netipsec netnatm netsmb nfs nfsclient nfsserver sys vm
41
42 LSUBDIRS=       cam/ata cam/scsi \
43         dev/acpica dev/agp dev/an dev/bktr dev/ciss dev/filemon dev/firewire \
44         dev/hwpmc \
45         dev/ic dev/iicbus ${_dev_ieee488} dev/io dev/lmc dev/mfi dev/nvme \
46         dev/ofw dev/pbio dev/pci ${_dev_powermac_nvram} dev/ppbus dev/smbus \
47         dev/speaker dev/usb dev/utopia dev/vkbd dev/wi \
48         fs/cuse \
49         fs/devfs fs/fdescfs fs/msdosfs fs/nandfs fs/nfs fs/nullfs \
50         fs/procfs fs/smbfs fs/udf fs/unionfs \
51         geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \
52         geom/mirror geom/mountver geom/multipath geom/nop \
53         geom/raid geom/raid3 geom/shsec geom/stripe geom/virstor \
54         netgraph/atm netgraph/netflow \
55         security/audit \
56         security/mac_biba security/mac_bsdextended security/mac_lomac \
57         security/mac_mls security/mac_partition \
58         ufs/ffs ufs/ufs
59
60 LSUBSUBDIRS=    dev/mpt/mpilib
61
62 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
63 _dev_powermac_nvram=    dev/powermac_nvram
64 .endif
65
66 .if ${MK_GPIB} != "no"
67 _dev_ieee488=   dev/ieee488
68 .endif
69
70 .if ${MK_GSSAPI} != "no"
71 SUBDIR+=        gssapi
72 INCS+=          gssapi.h
73 .endif
74
75 .if ${MK_HESIOD} != "no"
76 INCS+=  hesiod.h
77 .endif
78
79 .if ${MK_BLUETOOTH} != "no"
80 LSUBSUBDIRS+=   netgraph/bluetooth/include
81 .endif
82
83 # Handle the #define aliases for libiconv
84 .if ${MK_ICONV} == "yes"
85 INCS+=          iconv.h
86 .endif
87         
88
89 # Define SHARED to indicate whether you want symbolic links to the system
90 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
91 # probably only useful for developers and should be avoided if you do not
92 # wish to tie your /usr/include and /usr/src together.
93 #SHARED=        symlinks
94 SHARED?=        copies
95
96 INCS+=  osreldate.h
97
98 SYSDIR=                 ${.CURDIR}/../sys
99 NEWVERS_SH=             ${SYSDIR}/conf/newvers.sh
100 PARAM_H=                ${SYSDIR}/sys/param.h
101 MK_OSRELDATE_SH=        ${.CURDIR}/mk-osreldate.sh
102
103 osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH}
104         env ECHO="${ECHO}" \
105             MAKE="${MAKE}" \
106             NEWVERS_SH=${NEWVERS_SH} \
107             PARAM_H=${PARAM_H} \
108             SYSDIR=${SYSDIR} \
109             sh ${MK_OSRELDATE_SH}
110
111 .for i in ${LHDRS}
112 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
113 .endfor
114 .for i in ${MHDRS}
115 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
116 .endfor
117 .for i in ${PHDRS}
118 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
119 .endfor
120
121 .if ${MACHINE} != ${MACHINE_CPUARCH}
122 _MARCHS=        ${MACHINE_CPUARCH}
123 .endif
124 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
125 _MARCHS+=       x86
126 .endif
127
128 .include <bsd.prog.mk>
129
130 installincludes: ${SHARED}
131 ${SHARED}: compat
132
133 # Take care of stale directory-level symlinks.
134 compat:
135 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
136         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
137                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
138         fi
139 .endfor
140         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
141             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
142             -p ${DESTDIR}${INCLUDEDIR}
143
144 copies:
145 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
146         ${_MARCHS}
147 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
148         cd ${DESTDIR}${INCLUDEDIR}/$i; \
149         for h in *.h; do \
150                 if [ -L $$h ]; then rm -f $$h; fi; \
151         done
152 .endif
153 .endfor
154 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS}
155         cd ${.CURDIR}/../sys; \
156         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
157             ${DESTDIR}${INCLUDEDIR}/$i
158 .endfor
159         cd ${.CURDIR}/../sys/dev/acpica; \
160         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
161             ${DESTDIR}${INCLUDEDIR}/dev/acpica
162         cd ${.CURDIR}/../sys/dev/agp; \
163         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
164             ${DESTDIR}${INCLUDEDIR}/dev/agp
165         cd ${.CURDIR}/../sys/dev/bktr; \
166         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
167             ${DESTDIR}${INCLUDEDIR}/dev/bktr
168 .if ${MK_NAND} != "no"
169         cd ${.CURDIR}/../sys/dev/nand; \
170         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \
171             ${DESTDIR}${INCLUDEDIR}/dev/nand; \
172         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \
173             ${DESTDIR}${INCLUDEDIR}/dev/nand
174 .endif
175         cd ${.CURDIR}/../sys/dev/pci; \
176         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
177             ${DESTDIR}${INCLUDEDIR}/dev/pci
178         cd ${.CURDIR}/../sys/contrib/altq/altq; \
179         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
180             ${DESTDIR}${INCLUDEDIR}/altq
181         cd ${.CURDIR}/../sys/fs/cd9660/; \
182         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
183             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
184 .if ${MK_IPFILTER} != "no"
185         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
186         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
187             ${DESTDIR}${INCLUDEDIR}/netinet
188 .endif
189 .if ${MK_PF} != "no"
190         cd ${.CURDIR}/../sys/netpfil/pf; \
191         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
192             ${DESTDIR}${INCLUDEDIR}/netpfil/pf
193 .endif
194         cd ${.CURDIR}/../sys/crypto; \
195         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
196             ${DESTDIR}${INCLUDEDIR}/crypto
197         cd ${.CURDIR}/../sys/opencrypto; \
198         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
199             ${DESTDIR}${INCLUDEDIR}/crypto
200         cd ${.CURDIR}/../sys/${MACHINE}/include; \
201         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
202             ${DESTDIR}${INCLUDEDIR}/machine
203 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
204         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
205         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
206             ${DESTDIR}${INCLUDEDIR}/machine/pc
207 .endif
208 .for _MARCH in ${_MARCHS}
209 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
210         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
211             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
212         cd ${.CURDIR}/../sys/${_MARCH}/include; \
213         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
214             ${DESTDIR}${INCLUDEDIR}/${_MARCH}
215 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
216         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
217             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
218         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
219         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
220             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
221 .endif
222 .endif
223 .endfor
224         cd ${.CURDIR}/../sys/rpc; \
225         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
226             ${DESTDIR}${INCLUDEDIR}/rpc
227         cd ${.CURDIR}/../sys/teken; \
228         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 teken.h \
229             ${DESTDIR}${INCLUDEDIR}/teken
230
231 symlinks:
232         @${ECHO} "Setting up symlinks to kernel source tree..."
233 .for i in ${LDIRS}
234         cd ${.CURDIR}/../sys/$i; \
235         for h in *.h; do \
236                 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
237         done
238 .endfor
239 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci}
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         cd ${.CURDIR}/../sys/dev/acpica; \
246         for h in acpiio.h; do \
247                 ln -fs ../../../../sys/dev/acpica/$$h \
248                     ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
249         done
250         cd ${.CURDIR}/../sys/dev/agp; \
251         for h in agpreg.h; do \
252                 ln -fs ../../../../sys/dev/agp/$$h \
253                     ${DESTDIR}${INCLUDEDIR}/dev/agp; \
254         done
255         cd ${.CURDIR}/../sys/dev/bktr; \
256         for h in ioctl_*.h; do \
257                 ln -fs ../../../../sys/dev/bktr/$$h \
258                     ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
259         done
260 .if ${MK_NAND} != "no"
261         cd ${.CURDIR}/../sys/dev/nand; \
262         for h in nandsim.h nand_dev.h; do \
263                 ln -fs ../../../../sys/dev/nand/$$h \
264                     ${DESTDIR}${INCLUDEDIR}/dev/nand; \
265         done
266 .endif
267         cd ${.CURDIR}/../sys/dev/pci; \
268         for h in pcireg.h; do \
269                 ln -fs ../../../../sys/dev/pci/$$h \
270                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
271         done
272 .for i in ${LSUBSUBDIRS}
273         cd ${.CURDIR}/../sys/$i; \
274         for h in *.h; do \
275                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
276         done
277 .endfor
278         cd ${.CURDIR}/../sys/contrib/altq/altq; \
279         for h in *.h; do \
280                 ln -fs ../../../sys/contrib/altq/altq/$$h \
281                     ${DESTDIR}${INCLUDEDIR}/altq; \
282         done
283 .if ${MK_IPFILTER} != "no"
284         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
285         for h in *.h; do \
286                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
287                     ${DESTDIR}${INCLUDEDIR}/netinet; \
288         done
289 .endif
290 .if ${MK_PF} != "no"
291         cd ${.CURDIR}/../sys/netpfil/pf; \
292         for h in *.h; do \
293                 ln -fs ../../../../sys/netpfil/pf/$$h \
294                     ${DESTDIR}${INCLUDEDIR}/netpfil/pf; \
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