]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - include/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.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 gssapi 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 gssapi.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_HESIOD} != "no"
72 INCS+=  hesiod.h
73 .endif
74
75 .if ${MK_ICONV} != "no"
76 INCS+=  iconv.h
77 .endif
78
79 .if ${MK_BLUETOOTH} != "no"
80 LSUBSUBDIRS+=   netgraph/bluetooth/include
81 .endif
82
83 # XXX unconditionally needed by <netsmb/netbios.h>
84 #.if ${MK_IPX} != "no"
85 _netipx=        netipx
86 #.endif
87
88 .if ${MK_NCP} != "no"
89 _netncp=        netncp
90 _fs_nwfs=       fs/nwfs
91 .endif
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 osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh ${.CURDIR}/../sys/sys/param.h \
103     ${.CURDIR}/Makefile
104         @${ECHO} creating osreldate.h from newvers.sh
105         @MAKE=${MAKE}; \
106         PARAMFILE=${.CURDIR}/../sys/sys/param.h; \
107         . ${.CURDIR}/../sys/conf/newvers.sh; \
108         echo "$$COPYRIGHT" > osreldate.h; \
109         echo "#ifdef _KERNEL" >> osreldate.h; \
110         echo "#error \"<osreldate.h> cannot be used in the kernel, use <sys/param.h>\"" >> osreldate.h; \
111         echo "#else" >> osreldate.h; \
112         echo "#undef __FreeBSD_version" >> osreldate.h; \
113         echo "#define __FreeBSD_version $$RELDATE" >> osreldate.h; \
114         echo "#endif" >> osreldate.h
115
116 .for i in ${LHDRS}
117 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
118 .endfor
119 .for i in ${MHDRS}
120 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
121 .endfor
122 .for i in ${PHDRS}
123 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
124 .endfor
125
126 .if ${MACHINE} != ${MACHINE_CPUARCH}
127 _MARCHS=        ${MACHINE_CPUARCH}
128 .endif
129 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
130 _MARCHS+=       x86
131 .endif
132
133 .include <bsd.prog.mk>
134
135 installincludes: ${SHARED}
136 ${SHARED}: compat
137
138 # Take care of stale directory-level symlinks.
139 compat:
140 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
141         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
142                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
143         fi
144 .endfor
145         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
146             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
147             -p ${DESTDIR}${INCLUDEDIR}
148 .if ${MK_BIND_LIBS} != "no"
149         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
150             -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
151             -p ${DESTDIR}${INCLUDEDIR}
152 .endif
153
154 copies:
155 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
156         ${_MARCHS}
157 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
158         cd ${DESTDIR}${INCLUDEDIR}/$i; \
159         for h in *.h; do \
160                 if [ -L $$h ]; then rm -f $$h; fi; \
161         done
162 .endif
163 .endfor
164 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci} ${LSUBSUBDIRS}
165         cd ${.CURDIR}/../sys; \
166         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
167             ${DESTDIR}${INCLUDEDIR}/$i
168 .endfor
169         cd ${.CURDIR}/../sys/dev/acpica; \
170         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
171             ${DESTDIR}${INCLUDEDIR}/dev/acpica
172         cd ${.CURDIR}/../sys/dev/agp; \
173         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
174             ${DESTDIR}${INCLUDEDIR}/dev/agp
175         cd ${.CURDIR}/../sys/dev/bktr; \
176         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
177             ${DESTDIR}${INCLUDEDIR}/dev/bktr
178         cd ${.CURDIR}/../sys/dev/pci; \
179         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
180             ${DESTDIR}${INCLUDEDIR}/dev/pci
181         cd ${.CURDIR}/../sys/contrib/altq/altq; \
182         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
183             ${DESTDIR}${INCLUDEDIR}/altq
184         cd ${.CURDIR}/../sys/fs/cd9660/; \
185         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
186             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
187 .if ${MK_IPFILTER} != "no"
188         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
189         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
190             ${DESTDIR}${INCLUDEDIR}/netinet
191 .endif
192         cd ${.CURDIR}/../sys/contrib/pf/net; \
193         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
194             ${DESTDIR}${INCLUDEDIR}/net
195         cd ${.CURDIR}/../sys/crypto; \
196         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
197             ${DESTDIR}${INCLUDEDIR}/crypto
198         cd ${.CURDIR}/../sys/opencrypto; \
199         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
200             ${DESTDIR}${INCLUDEDIR}/crypto
201         cd ${.CURDIR}/../sys/${MACHINE}/include; \
202         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
203             ${DESTDIR}${INCLUDEDIR}/machine
204 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
205         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
206         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
207             ${DESTDIR}${INCLUDEDIR}/machine/pc
208 .endif
209 .for _MARCH in ${_MARCHS}
210 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
211         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
212             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
213         cd ${.CURDIR}/../sys/${_MARCH}/include; \
214         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
215             ${DESTDIR}${INCLUDEDIR}/${_MARCH}
216 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
217         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
218             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
219         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
220         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
221             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
222 .endif
223 .endif
224 .endfor
225         cd ${.CURDIR}/../sys/rpc; \
226         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
227             ${DESTDIR}${INCLUDEDIR}/rpc
228
229 symlinks:
230         @${ECHO} "Setting up symlinks to kernel source tree..."
231 .for i in ${LDIRS}
232         cd ${.CURDIR}/../sys/$i; \
233         for h in *.h; do \
234                 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
235         done
236 .endfor
237 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci}
238         cd ${.CURDIR}/../sys/$i; \
239         for h in *.h; do \
240                 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
241         done
242 .endfor
243         cd ${.CURDIR}/../sys/dev/acpica; \
244         for h in acpiio.h; do \
245                 ln -fs ../../../../sys/dev/acpica/$$h \
246                     ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
247         done
248         cd ${.CURDIR}/../sys/dev/agp; \
249         for h in agpreg.h; do \
250                 ln -fs ../../../../sys/dev/agp/$$h \
251                     ${DESTDIR}${INCLUDEDIR}/dev/agp; \
252         done
253         cd ${.CURDIR}/../sys/dev/bktr; \
254         for h in ioctl_*.h; do \
255                 ln -fs ../../../../sys/dev/bktr/$$h \
256                     ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
257         done
258         cd ${.CURDIR}/../sys/dev/pci; \
259         for h in pcireg.h; do \
260                 ln -fs ../../../../sys/dev/pci/$$h \
261                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
262         done
263 .for i in ${LSUBSUBDIRS}
264         cd ${.CURDIR}/../sys/$i; \
265         for h in *.h; do \
266                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
267         done
268 .endfor
269         cd ${.CURDIR}/../sys/contrib/altq/altq; \
270         for h in *.h; do \
271                 ln -fs ../../../sys/contrib/altq/altq/$$h \
272                     ${DESTDIR}${INCLUDEDIR}/altq; \
273         done
274 .if ${MK_IPFILTER} != "no"
275         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
276         for h in *.h; do \
277                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
278                     ${DESTDIR}${INCLUDEDIR}/netinet; \
279         done
280 .endif
281         cd ${.CURDIR}/../sys/contrib/pf/net; \
282         for h in *.h; do \
283                 ln -fs ../../../sys/contrib/pf/net/$$h \
284                     ${DESTDIR}${INCLUDEDIR}/net; \
285         done
286         cd ${.CURDIR}/../sys/crypto; \
287         for h in rijndael/rijndael.h; do \
288                 ln -fs ../../../sys/crypto/$$h \
289                     ${DESTDIR}${INCLUDEDIR}/crypto; \
290         done
291         cd ${.CURDIR}/../sys/opencrypto; \
292         for h in *.h; do \
293                 ln -fs ../../../sys/opencrypto/$$h \
294                     ${DESTDIR}${INCLUDEDIR}/crypto; \
295         done
296         cd ${.CURDIR}/../sys/${MACHINE}/include; \
297         for h in *.h; do \
298                 ln -fs ../../../sys/${MACHINE}/include/$$h \
299                     ${DESTDIR}${INCLUDEDIR}/machine; \
300         done
301 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
302         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
303         for h in *.h; do \
304                 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
305                     ${DESTDIR}${INCLUDEDIR}/machine/pc; \
306         done
307 .endif
308 .for _MARCH in ${_MARCHS}
309 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
310         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
311             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
312         cd ${.CURDIR}/../sys/${_MARCH}/include; \
313         for h in *.h; do \
314                 ln -fs ../../../sys/${_MARCH}/include/$$h \
315                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
316         done
317 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
318         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
319             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
320         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
321         for h in *.h; do \
322                 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
323                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
324         done
325 .endif
326 .endif
327 .endfor
328         cd ${.CURDIR}/../sys/fs/cd9660; \
329         for h in *.h; do \
330                 ln -fs ../../../../sys/fs/cd9660/$$h \
331                     ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
332         done
333         cd ${.CURDIR}/../sys/rpc; \
334         for h in types.h; do \
335                 ln -fs ../../../sys/rpc/$$h \
336                     ${DESTDIR}${INCLUDEDIR}/rpc; \
337         done