]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - include/Makefile
Clean up more usb related files when MK_USB == no when dealing with
[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/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 .if ${MK_USB} != "no"
61 LSUBDIRS+=      dev/usb
62 .endif
63
64 LSUBSUBDIRS=    dev/mpt/mpilib
65
66 .if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
67 _dev_powermac_nvram=    dev/powermac_nvram
68 .endif
69
70 .if ${MK_GPIB} != "no"
71 _dev_ieee488=   dev/ieee488
72 .endif
73
74 .if ${MK_GSSAPI} != "no"
75 SUBDIR+=        gssapi
76 INCS+=          gssapi.h
77 .endif
78
79 .if ${MK_HESIOD} != "no"
80 INCS+=  hesiod.h
81 .endif
82
83 .if ${MK_BLUETOOTH} != "no"
84 LSUBSUBDIRS+=   netgraph/bluetooth/include
85 .endif
86
87 # Handle the #define aliases for libiconv
88 .if ${MK_ICONV} == "yes"
89 INCS+=          iconv.h
90 .endif
91         
92
93 # Define SHARED to indicate whether you want symbolic links to the system
94 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
95 # probably only useful for developers and should be avoided if you do not
96 # wish to tie your /usr/include and /usr/src together.
97 #SHARED=        symlinks
98 SHARED?=        copies
99
100 INCS+=  osreldate.h
101
102 SYSDIR=                 ${.CURDIR}/../sys
103 NEWVERS_SH=             ${SYSDIR}/conf/newvers.sh
104 PARAM_H=                ${SYSDIR}/sys/param.h
105 MK_OSRELDATE_SH=        ${.CURDIR}/mk-osreldate.sh
106
107 osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH}
108         env ECHO="${ECHO}" \
109             MAKE="${MAKE}" \
110             NEWVERS_SH=${NEWVERS_SH} \
111             PARAM_H=${PARAM_H} \
112             SYSDIR=${SYSDIR} \
113             sh ${MK_OSRELDATE_SH}
114
115 .for i in ${LHDRS}
116 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
117 .endfor
118 .for i in ${MHDRS}
119 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
120 .endfor
121 .for i in ${PHDRS}
122 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
123 .endfor
124
125 .if ${MACHINE} != ${MACHINE_CPUARCH}
126 _MARCHS=        ${MACHINE_CPUARCH}
127 .endif
128 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
129 _MARCHS+=       x86
130 .endif
131
132 .include <bsd.prog.mk>
133
134 installincludes: ${SHARED}
135 ${SHARED}: compat
136
137 # Take care of stale directory-level symlinks.
138 compat:
139 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
140         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
141                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
142         fi
143 .endfor
144         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
145             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
146             -p ${DESTDIR}${INCLUDEDIR}
147
148 copies:
149 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
150         ${_MARCHS}
151 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
152         cd ${DESTDIR}${INCLUDEDIR}/$i; \
153         for h in *.h; do \
154                 if [ -L $$h ]; then rm -f $$h; fi; \
155         done
156 .endif
157 .endfor
158 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS}
159         cd ${.CURDIR}/../sys; \
160         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
161             ${DESTDIR}${INCLUDEDIR}/$i
162 .endfor
163         cd ${.CURDIR}/../sys/dev/acpica; \
164         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
165             ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
166         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpi_hpet.h \
167             ${DESTDIR}${INCLUDEDIR}/dev/acpica
168         cd ${.CURDIR}/../sys/dev/agp; \
169         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
170             ${DESTDIR}${INCLUDEDIR}/dev/agp
171         cd ${.CURDIR}/../sys/dev/bktr; \
172         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
173             ${DESTDIR}${INCLUDEDIR}/dev/bktr
174 .if ${MK_NAND} != "no"
175         cd ${.CURDIR}/../sys/dev/nand; \
176         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \
177             ${DESTDIR}${INCLUDEDIR}/dev/nand; \
178         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \
179             ${DESTDIR}${INCLUDEDIR}/dev/nand
180 .endif
181         cd ${.CURDIR}/../sys/dev/pci; \
182         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
183             ${DESTDIR}${INCLUDEDIR}/dev/pci
184         cd ${.CURDIR}/../sys/contrib/altq/altq; \
185         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
186             ${DESTDIR}${INCLUDEDIR}/altq
187         cd ${.CURDIR}/../sys/fs/cd9660/; \
188         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
189             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
190 .if ${MK_IPFILTER} != "no"
191         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
192         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
193             ${DESTDIR}${INCLUDEDIR}/netinet
194 .endif
195 .if ${MK_PF} != "no"
196         cd ${.CURDIR}/../sys/netpfil/pf; \
197         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
198             ${DESTDIR}${INCLUDEDIR}/netpfil/pf
199 .endif
200         cd ${.CURDIR}/../sys/crypto; \
201         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
202             ${DESTDIR}${INCLUDEDIR}/crypto
203         cd ${.CURDIR}/../sys/opencrypto; \
204         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
205             ${DESTDIR}${INCLUDEDIR}/crypto
206         cd ${.CURDIR}/../sys/${MACHINE}/include; \
207         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
208             ${DESTDIR}${INCLUDEDIR}/machine
209 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
210         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
211         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
212             ${DESTDIR}${INCLUDEDIR}/machine/pc
213 .endif
214 .for _MARCH in ${_MARCHS}
215 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
216         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
217             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
218         cd ${.CURDIR}/../sys/${_MARCH}/include; \
219         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
220             ${DESTDIR}${INCLUDEDIR}/${_MARCH}
221 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
222         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
223             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
224         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
225         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
226             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
227 .endif
228 .endif
229 .endfor
230         cd ${.CURDIR}/../sys/rpc; \
231         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
232             ${DESTDIR}${INCLUDEDIR}/rpc
233         cd ${.CURDIR}/../sys/teken; \
234         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 teken.h \
235             ${DESTDIR}${INCLUDEDIR}/teken
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/nand: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 acpi_hpet.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 .if ${MK_NAND} != "no"
267         cd ${.CURDIR}/../sys/dev/nand; \
268         for h in nandsim.h nand_dev.h; do \
269                 ln -fs ../../../../sys/dev/nand/$$h \
270                     ${DESTDIR}${INCLUDEDIR}/dev/nand; \
271         done
272 .endif
273         cd ${.CURDIR}/../sys/dev/pci; \
274         for h in pcireg.h; do \
275                 ln -fs ../../../../sys/dev/pci/$$h \
276                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
277         done
278 .for i in ${LSUBSUBDIRS}
279         cd ${.CURDIR}/../sys/$i; \
280         for h in *.h; do \
281                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
282         done
283 .endfor
284         cd ${.CURDIR}/../sys/contrib/altq/altq; \
285         for h in *.h; do \
286                 ln -fs ../../../sys/contrib/altq/altq/$$h \
287                     ${DESTDIR}${INCLUDEDIR}/altq; \
288         done
289 .if ${MK_IPFILTER} != "no"
290         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
291         for h in *.h; do \
292                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
293                     ${DESTDIR}${INCLUDEDIR}/netinet; \
294         done
295 .endif
296 .if ${MK_PF} != "no"
297         cd ${.CURDIR}/../sys/netpfil/pf; \
298         for h in *.h; do \
299                 ln -fs ../../../../sys/netpfil/pf/$$h \
300                     ${DESTDIR}${INCLUDEDIR}/netpfil/pf; \
301         done
302 .endif
303         cd ${.CURDIR}/../sys/crypto; \
304         for h in rijndael/rijndael.h; do \
305                 ln -fs ../../../sys/crypto/$$h \
306                     ${DESTDIR}${INCLUDEDIR}/crypto; \
307         done
308         cd ${.CURDIR}/../sys/opencrypto; \
309         for h in *.h; do \
310                 ln -fs ../../../sys/opencrypto/$$h \
311                     ${DESTDIR}${INCLUDEDIR}/crypto; \
312         done
313         cd ${.CURDIR}/../sys/${MACHINE}/include; \
314         for h in *.h; do \
315                 ln -fs ../../../sys/${MACHINE}/include/$$h \
316                     ${DESTDIR}${INCLUDEDIR}/machine; \
317         done
318 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
319         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
320         for h in *.h; do \
321                 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
322                     ${DESTDIR}${INCLUDEDIR}/machine/pc; \
323         done
324 .endif
325 .for _MARCH in ${_MARCHS}
326 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
327         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
328             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
329         cd ${.CURDIR}/../sys/${_MARCH}/include; \
330         for h in *.h; do \
331                 ln -fs ../../../sys/${_MARCH}/include/$$h \
332                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
333         done
334 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
335         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
336             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
337         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
338         for h in *.h; do \
339                 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
340                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
341         done
342 .endif
343 .endif
344 .endfor
345         cd ${.CURDIR}/../sys/fs/cd9660; \
346         for h in *.h; do \
347                 ln -fs ../../../../sys/fs/cd9660/$$h \
348                     ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
349         done
350         cd ${.CURDIR}/../sys/rpc; \
351         for h in types.h; do \
352                 ln -fs ../../../sys/rpc/$$h \
353                     ${DESTDIR}${INCLUDEDIR}/rpc; \
354         done