]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - include/Makefile
MFC 246367:
[FreeBSD/stable/8.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
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 regexp.h \
21         res_update.h resolv.h runetype.h search.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 tgmath.h \
25         time.h timeconv.h timers.h ttyent.h \
26         ulimit.h unistd.h utime.h utmp.h uuid.h varargs.h vis.h wchar.h \
27         wctype.h wordexp.h
28
29 MHDRS=  float.h floatingpoint.h stdarg.h
30
31 PHDRS=  sched.h semaphore.h _semaphore.h
32
33 LHDRS=  aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \
34         termios.h ucontext.h
35
36 LDIRS=  bsm cam geom net net80211 netatalk netgraph netinet netinet6 \
37         netipsec ${_netipx} netnatm ${_netncp} netsmb \
38         nfs nfsclient nfsserver \
39         sys vm
40
41 LSUBDIRS=       cam/ata cam/scsi \
42         dev/acpica dev/agp dev/an dev/bktr dev/ciss dev/firewire dev/hwpmc \
43         dev/ic dev/iicbus ${_dev_ieee488} dev/io dev/lmc dev/mfi dev/ofw \
44         dev/pbio dev/pci ${_dev_powermac_nvram} dev/ppbus dev/smbus \
45         dev/speaker dev/usb dev/utopia dev/vkbd dev/wi \
46         fs/devfs fs/fdescfs fs/fifofs fs/msdosfs fs/nfs fs/ntfs fs/nullfs \
47         ${_fs_nwfs} fs/portalfs fs/procfs fs/smbfs fs/udf fs/unionfs \
48         geom/cache geom/concat geom/eli geom/gate geom/journal geom/label \
49         geom/mirror geom/multipath geom/nop \
50         geom/raid geom/raid3 geom/shsec geom/stripe geom/virstor \
51         netgraph/atm netgraph/netflow \
52         security/audit \
53         security/mac_biba security/mac_bsdextended security/mac_lomac \
54         security/mac_mls security/mac_partition \
55         ufs/ffs ufs/ufs
56
57 LSUBSUBDIRS=    dev/mpt/mpilib
58
59 .if ${MACHINE_ARCH} == "powerpc"
60 _dev_powermac_nvram=    dev/powermac_nvram
61 .endif
62
63 .if ${MK_GPIB} != "no"
64 _dev_ieee488=   dev/ieee488
65 .endif
66
67 .if ${MK_HESIOD} != "no"
68 INCS+=  hesiod.h
69 .endif
70
71 .if ${MK_BLUETOOTH} != "no"
72 LSUBSUBDIRS+=   netgraph/bluetooth/include
73 .endif
74
75 # XXX unconditionally needed by <netsmb/netbios.h>
76 #.if ${MK_IPX} != "no"
77 _netipx=        netipx
78 #.endif
79
80 .if ${MK_NCP} != "no"
81 _netncp=        netncp
82 _fs_nwfs=       fs/nwfs
83 .endif
84
85 # Define SHARED to indicate whether you want symbolic links to the system
86 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
87 # probably only useful for developers and should be avoided if you do not
88 # wish to tie your /usr/include and /usr/src together.
89 #SHARED=        symlinks
90 SHARED?=        copies
91
92 INCS+=  osreldate.h
93
94 osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh ${.CURDIR}/../sys/sys/param.h \
95     ${.CURDIR}/Makefile
96         @${ECHO} creating osreldate.h from newvers.sh
97         @MAKE=${MAKE}; \
98         PARAMFILE=${.CURDIR}/../sys/sys/param.h; \
99         . ${.CURDIR}/../sys/conf/newvers.sh; \
100         echo "$$COPYRIGHT" > osreldate.h; \
101         echo "#ifdef _KERNEL" >> osreldate.h; \
102         echo "#error \"<osreldate.h> cannot be used in the kernel, use <sys/param.h>\"" >> osreldate.h; \
103         echo "#else" >> osreldate.h; \
104         echo "#undef __FreeBSD_version" >> osreldate.h; \
105         echo "#define __FreeBSD_version $$RELDATE" >> osreldate.h; \
106         echo "#endif" >> osreldate.h
107
108 .for i in ${LHDRS}
109 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
110 .endfor
111 .for i in ${MHDRS}
112 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
113 .endfor
114 .for i in ${PHDRS}
115 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
116 .endfor
117
118 .if ${MACHINE} != ${MACHINE_ARCH}
119 _MARCH=${MACHINE_ARCH}
120 .endif
121
122 .include <bsd.prog.mk>
123
124 installincludes: ${SHARED}
125 ${SHARED}: compat
126
127 # Take care of stale directory-level symlinks.
128 compat:
129 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCH} crypto
130         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
131                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
132         fi
133 .endfor
134         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
135             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
136             -p ${DESTDIR}${INCLUDEDIR}
137 .if ${MK_BIND_LIBS} != "no"
138         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
139             -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
140             -p ${DESTDIR}${INCLUDEDIR}
141 .endif
142
143 copies:
144 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
145         ${_MARCH}
146 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
147         cd ${DESTDIR}${INCLUDEDIR}/$i; \
148         for h in *.h; do \
149                 if [ -L $$h ]; then rm -f $$h; fi; \
150         done
151 .endif
152 .endfor
153 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci} ${LSUBSUBDIRS}
154         cd ${.CURDIR}/../sys; \
155         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
156             ${DESTDIR}${INCLUDEDIR}/$i
157 .endfor
158         cd ${.CURDIR}/../sys/dev/acpica; \
159         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
160             ${DESTDIR}${INCLUDEDIR}/dev/acpica
161         cd ${.CURDIR}/../sys/dev/agp; \
162         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
163             ${DESTDIR}${INCLUDEDIR}/dev/agp
164         cd ${.CURDIR}/../sys/dev/bktr; \
165         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
166             ${DESTDIR}${INCLUDEDIR}/dev/bktr
167         cd ${.CURDIR}/../sys/dev/pci; \
168         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
169             ${DESTDIR}${INCLUDEDIR}/dev/pci
170         cd ${.CURDIR}/../sys/contrib/altq/altq; \
171         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
172             ${DESTDIR}${INCLUDEDIR}/altq
173         cd ${.CURDIR}/../sys/fs/cd9660/; \
174         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
175             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
176 .if ${MK_IPFILTER} != "no"
177         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
178         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
179             ${DESTDIR}${INCLUDEDIR}/netinet
180 .endif
181         cd ${.CURDIR}/../sys/contrib/pf/net; \
182         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
183             ${DESTDIR}${INCLUDEDIR}/net
184         cd ${.CURDIR}/../sys/crypto; \
185         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
186             ${DESTDIR}${INCLUDEDIR}/crypto
187         cd ${.CURDIR}/../sys/opencrypto; \
188         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
189             ${DESTDIR}${INCLUDEDIR}/crypto
190         cd ${.CURDIR}/../sys/${MACHINE}/include; \
191         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
192             ${DESTDIR}${INCLUDEDIR}/machine
193 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
194         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
195         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
196             ${DESTDIR}${INCLUDEDIR}/machine/pc
197 .endif
198 .if defined(_MARCH)
199         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
200             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
201         cd ${.CURDIR}/../sys/${_MARCH}/include; \
202         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
203             ${DESTDIR}${INCLUDEDIR}/${_MARCH}
204 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
205         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
206             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
207         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
208         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
209             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
210 .endif
211 .endif
212         cd ${.CURDIR}/../sys/rpc; \
213         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
214             ${DESTDIR}${INCLUDEDIR}/rpc
215
216 symlinks:
217         @${ECHO} "Setting up symlinks to kernel source tree..."
218 .for i in ${LDIRS}
219         cd ${.CURDIR}/../sys/$i; \
220         for h in *.h; do \
221                 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
222         done
223 .endfor
224 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci}
225         cd ${.CURDIR}/../sys/$i; \
226         for h in *.h; do \
227                 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
228         done
229 .endfor
230         cd ${.CURDIR}/../sys/dev/acpica; \
231         for h in acpiio.h; do \
232                 ln -fs ../../../../sys/dev/acpica/$$h \
233                     ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
234         done
235         cd ${.CURDIR}/../sys/dev/agp; \
236         for h in agpreg.h; do \
237                 ln -fs ../../../../sys/dev/agp/$$h \
238                     ${DESTDIR}${INCLUDEDIR}/dev/agp; \
239         done
240         cd ${.CURDIR}/../sys/dev/bktr; \
241         for h in ioctl_*.h; do \
242                 ln -fs ../../../../sys/dev/bktr/$$h \
243                     ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
244         done
245         cd ${.CURDIR}/../sys/dev/pci; \
246         for h in pcireg.h; do \
247                 ln -fs ../../../../sys/dev/pci/$$h \
248                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
249         done
250 .for i in ${LSUBSUBDIRS}
251         cd ${.CURDIR}/../sys/$i; \
252         for h in *.h; do \
253                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
254         done
255 .endfor
256         cd ${.CURDIR}/../sys/contrib/altq/altq; \
257         for h in *.h; do \
258                 ln -fs ../../../sys/contrib/altq/altq/$$h \
259                     ${DESTDIR}${INCLUDEDIR}/altq; \
260         done
261 .if ${MK_IPFILTER} != "no"
262         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
263         for h in *.h; do \
264                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
265                     ${DESTDIR}${INCLUDEDIR}/netinet; \
266         done
267 .endif
268         cd ${.CURDIR}/../sys/contrib/pf/net; \
269         for h in *.h; do \
270                 ln -fs ../../../sys/contrib/pf/net/$$h \
271                     ${DESTDIR}${INCLUDEDIR}/net; \
272         done
273         cd ${.CURDIR}/../sys/crypto; \
274         for h in rijndael/rijndael.h; do \
275                 ln -fs ../../../sys/crypto/$$h \
276                     ${DESTDIR}${INCLUDEDIR}/crypto; \
277         done
278         cd ${.CURDIR}/../sys/opencrypto; \
279         for h in *.h; do \
280                 ln -fs ../../../sys/opencrypto/$$h \
281                     ${DESTDIR}${INCLUDEDIR}/crypto; \
282         done
283         cd ${.CURDIR}/../sys/${MACHINE}/include; \
284         for h in *.h; do \
285                 ln -fs ../../../sys/${MACHINE}/include/$$h \
286                     ${DESTDIR}${INCLUDEDIR}/machine; \
287         done
288 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
289         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
290         for h in *.h; do \
291                 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
292                     ${DESTDIR}${INCLUDEDIR}/machine/pc; \
293         done
294 .endif
295 .if defined(_MARCH)
296         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
297             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
298         cd ${.CURDIR}/../sys/${_MARCH}/include; \
299         for h in *.h; do \
300                 ln -fs ../../../sys/${_MARCH}/include/$$h \
301                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
302         done
303 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
304         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
305             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
306         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
307         for h in *.h; do \
308                 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
309                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
310         done
311 .endif
312 .endif
313         cd ${.CURDIR}/../sys/fs/cd9660; \
314         for h in *.h; do \
315                 ln -fs ../../../../sys/fs/cd9660/$$h \
316                     ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
317         done
318         cd ${.CURDIR}/../sys/rpc; \
319         for h in types.h; do \
320                 ln -fs ../../../sys/rpc/$$h \
321                     ${DESTDIR}${INCLUDEDIR}/rpc; \
322         done