Install teken.h for userland.
[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 <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 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 netatalk netgraph netinet netinet6 \
40         netipsec ${_netipx} netnatm 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/msdosfs fs/nandfs fs/nfs fs/nullfs \
51         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_BLUETOOTH} != "no"
76 LSUBSUBDIRS+=   netgraph/bluetooth/include
77 .endif
78
79 # XXX unconditionally needed by <netsmb/netbios.h>
80 #.if ${MK_IPX} != "no"
81 _netipx=        netipx
82 #.endif
83
84 # Handle the #define aliases for libiconv
85 .if ${MK_ICONV} == "yes"
86 INCS+=          iconv.h
87 .endif
88         
89
90 # Define SHARED to indicate whether you want symbolic links to the system
91 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
92 # probably only useful for developers and should be avoided if you do not
93 # wish to tie your /usr/include and /usr/src together.
94 #SHARED=        symlinks
95 SHARED?=        copies
96
97 INCS+=  osreldate.h
98
99 SYSDIR=                 ${.CURDIR}/../sys
100 NEWVERS_SH=             ${SYSDIR}/conf/newvers.sh
101 PARAM_H=                ${SYSDIR}/sys/param.h
102 MK_OSRELDATE_SH=        ${.CURDIR}/mk-osreldate.sh
103
104 osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH}
105         env ECHO="${ECHO}" \
106             MAKE="${MAKE}" \
107             NEWVERS_SH=${NEWVERS_SH} \
108             PARAM_H=${PARAM_H} \
109             SYSDIR=${SYSDIR} \
110             sh ${MK_OSRELDATE_SH}
111
112 .for i in ${LHDRS}
113 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
114 .endfor
115 .for i in ${MHDRS}
116 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
117 .endfor
118 .for i in ${PHDRS}
119 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
120 .endfor
121
122 .if ${MACHINE} != ${MACHINE_CPUARCH}
123 _MARCHS=        ${MACHINE_CPUARCH}
124 .endif
125 .if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
126 _MARCHS+=       x86
127 .endif
128
129 .include <bsd.prog.mk>
130
131 installincludes: ${SHARED}
132 ${SHARED}: compat
133
134 # Take care of stale directory-level symlinks.
135 compat:
136 .for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
137         if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
138                 rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
139         fi
140 .endfor
141         mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
142             -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
143             -p ${DESTDIR}${INCLUDEDIR}
144
145 copies:
146 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
147         ${_MARCHS}
148 .if exists(${DESTDIR}${INCLUDEDIR}/$i)
149         cd ${DESTDIR}${INCLUDEDIR}/$i; \
150         for h in *.h; do \
151                 if [ -L $$h ]; then rm -f $$h; fi; \
152         done
153 .endif
154 .endfor
155 .for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS}
156         cd ${.CURDIR}/../sys; \
157         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
158             ${DESTDIR}${INCLUDEDIR}/$i
159 .endfor
160         cd ${.CURDIR}/../sys/dev/acpica; \
161         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
162             ${DESTDIR}${INCLUDEDIR}/dev/acpica
163         cd ${.CURDIR}/../sys/dev/agp; \
164         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
165             ${DESTDIR}${INCLUDEDIR}/dev/agp
166         cd ${.CURDIR}/../sys/dev/bktr; \
167         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
168             ${DESTDIR}${INCLUDEDIR}/dev/bktr
169 .if ${MK_NAND} != "no"
170         cd ${.CURDIR}/../sys/dev/nand; \
171         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \
172             ${DESTDIR}${INCLUDEDIR}/dev/nand; \
173         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \
174             ${DESTDIR}${INCLUDEDIR}/dev/nand
175 .endif
176         cd ${.CURDIR}/../sys/dev/pci; \
177         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
178             ${DESTDIR}${INCLUDEDIR}/dev/pci
179         cd ${.CURDIR}/../sys/contrib/altq/altq; \
180         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
181             ${DESTDIR}${INCLUDEDIR}/altq
182         cd ${.CURDIR}/../sys/fs/cd9660/; \
183         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
184             ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
185 .if ${MK_IPFILTER} != "no"
186         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
187         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
188             ${DESTDIR}${INCLUDEDIR}/netinet
189 .endif
190 .if ${MK_PF} != "no"
191         cd ${.CURDIR}/../sys/netpfil/pf; \
192         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
193             ${DESTDIR}${INCLUDEDIR}/netpfil/pf
194 .endif
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         cd ${.CURDIR}/../sys/teken; \
229         ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 teken.h \
230             ${DESTDIR}${INCLUDEDIR}/teken
231
232 symlinks:
233         @${ECHO} "Setting up symlinks to kernel source tree..."
234 .for i in ${LDIRS}
235         cd ${.CURDIR}/../sys/$i; \
236         for h in *.h; do \
237                 ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
238         done
239 .endfor
240 .for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci}
241         cd ${.CURDIR}/../sys/$i; \
242         for h in *.h; do \
243                 ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
244         done
245 .endfor
246         cd ${.CURDIR}/../sys/dev/acpica; \
247         for h in acpiio.h; do \
248                 ln -fs ../../../../sys/dev/acpica/$$h \
249                     ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
250         done
251         cd ${.CURDIR}/../sys/dev/agp; \
252         for h in agpreg.h; do \
253                 ln -fs ../../../../sys/dev/agp/$$h \
254                     ${DESTDIR}${INCLUDEDIR}/dev/agp; \
255         done
256         cd ${.CURDIR}/../sys/dev/bktr; \
257         for h in ioctl_*.h; do \
258                 ln -fs ../../../../sys/dev/bktr/$$h \
259                     ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
260         done
261 .if ${MK_NAND} != "no"
262         cd ${.CURDIR}/../sys/dev/nand; \
263         for h in nandsim.h nand_dev.h; do \
264                 ln -fs ../../../../sys/dev/nand/$$h \
265                     ${DESTDIR}${INCLUDEDIR}/dev/nand; \
266         done
267 .endif
268         cd ${.CURDIR}/../sys/dev/pci; \
269         for h in pcireg.h; do \
270                 ln -fs ../../../../sys/dev/pci/$$h \
271                     ${DESTDIR}${INCLUDEDIR}/dev/pci; \
272         done
273 .for i in ${LSUBSUBDIRS}
274         cd ${.CURDIR}/../sys/$i; \
275         for h in *.h; do \
276                 ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
277         done
278 .endfor
279         cd ${.CURDIR}/../sys/contrib/altq/altq; \
280         for h in *.h; do \
281                 ln -fs ../../../sys/contrib/altq/altq/$$h \
282                     ${DESTDIR}${INCLUDEDIR}/altq; \
283         done
284 .if ${MK_IPFILTER} != "no"
285         cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
286         for h in *.h; do \
287                 ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
288                     ${DESTDIR}${INCLUDEDIR}/netinet; \
289         done
290 .endif
291 .if ${MK_PF} != "no"
292         cd ${.CURDIR}/../sys/netpfil/pf; \
293         for h in *.h; do \
294                 ln -fs ../../../../sys/netpfil/pf/$$h \
295                     ${DESTDIR}${INCLUDEDIR}/netpfil/pf; \
296         done
297 .endif
298         cd ${.CURDIR}/../sys/crypto; \
299         for h in rijndael/rijndael.h; do \
300                 ln -fs ../../../sys/crypto/$$h \
301                     ${DESTDIR}${INCLUDEDIR}/crypto; \
302         done
303         cd ${.CURDIR}/../sys/opencrypto; \
304         for h in *.h; do \
305                 ln -fs ../../../sys/opencrypto/$$h \
306                     ${DESTDIR}${INCLUDEDIR}/crypto; \
307         done
308         cd ${.CURDIR}/../sys/${MACHINE}/include; \
309         for h in *.h; do \
310                 ln -fs ../../../sys/${MACHINE}/include/$$h \
311                     ${DESTDIR}${INCLUDEDIR}/machine; \
312         done
313 .if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
314         cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
315         for h in *.h; do \
316                 ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
317                     ${DESTDIR}${INCLUDEDIR}/machine/pc; \
318         done
319 .endif
320 .for _MARCH in ${_MARCHS}
321 .if exists(${.CURDIR}/../sys/${_MARCH}/include)
322         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
323             ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
324         cd ${.CURDIR}/../sys/${_MARCH}/include; \
325         for h in *.h; do \
326                 ln -fs ../../../sys/${_MARCH}/include/$$h \
327                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
328         done
329 .if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
330         ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
331             ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
332         cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
333         for h in *.h; do \
334                 ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
335                     ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
336         done
337 .endif
338 .endif
339 .endfor
340         cd ${.CURDIR}/../sys/fs/cd9660; \
341         for h in *.h; do \
342                 ln -fs ../../../../sys/fs/cd9660/$$h \
343                     ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
344         done
345         cd ${.CURDIR}/../sys/rpc; \
346         for h in types.h; do \
347                 ln -fs ../../../sys/rpc/$$h \
348                     ${DESTDIR}${INCLUDEDIR}/rpc; \
349         done