Makefile revision 293896
1#	@(#)Makefile	8.2 (Berkeley) 1/4/94
2# $FreeBSD: releng/9.3/include/Makefile 293896 2016-01-14 09:11:26Z glebius $
3#
4# Doing a "make install" builds /usr/include.
5
6.include <bsd.own.mk>
7
8CLEANFILES= osreldate.h version vers.c
9SUBDIR= arpa gssapi protocols rpcsvc rpc xlocale
10INCS=	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 stdatomic.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	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
30INCS+=	vis.h
31
32MHDRS=	float.h floatingpoint.h stdarg.h
33
34PHDRS=	sched.h _semaphore.h
35
36LHDRS=	aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \
37	ucontext.h
38
39LDIRS=	bsm cam geom net net80211 netatalk netgraph netinet netinet6 \
40	netipsec ${_netipx} netnatm ${_netncp} netsmb \
41	nfs nfsclient nfsserver \
42	sys vm
43
44LSUBDIRS=	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
61LSUBSUBDIRS=	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"
72INCS+=	hesiod.h
73.endif
74
75.if ${MK_ICONV} != "no"
76INCS+=	iconv.h
77.endif
78
79.if ${MK_BLUETOOTH} != "no"
80LSUBSUBDIRS+=	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
98SHARED?=	copies
99
100INCS+=	osreldate.h
101
102SYSDIR=			${.CURDIR}/../sys
103NEWVERS_SH=		${SYSDIR}/conf/newvers.sh
104PARAM_H=		${SYSDIR}/sys/param.h
105MK_OSRELDATE_SH=	${.CURDIR}/mk-osreldate.sh
106
107osreldate.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}
116INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
117.endfor
118.for i in ${MHDRS}
119INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
120.endfor
121.for i in ${PHDRS}
122INCSLINKS+=	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
134installincludes: ${SHARED}
135${SHARED}: compat
136
137# Take care of stale directory-level symlinks.
138compat:
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.if ${MK_BIND_LIBS} != "no"
148	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
149	    -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
150	    -p ${DESTDIR}${INCLUDEDIR}
151.endif
152
153copies:
154.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
155	${_MARCHS}
156.if exists(${DESTDIR}${INCLUDEDIR}/$i)
157	cd ${DESTDIR}${INCLUDEDIR}/$i; \
158	for h in *.h; do \
159		if [ -L $$h ]; then rm -f $$h; fi; \
160	done
161.endif
162.endfor
163.for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci} ${LSUBSUBDIRS}
164	cd ${.CURDIR}/../sys; \
165	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
166	    ${DESTDIR}${INCLUDEDIR}/$i
167.endfor
168	cd ${.CURDIR}/../sys/dev/acpica; \
169	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
170	    ${DESTDIR}${INCLUDEDIR}/dev/acpica
171	cd ${.CURDIR}/../sys/dev/agp; \
172	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
173	    ${DESTDIR}${INCLUDEDIR}/dev/agp
174	cd ${.CURDIR}/../sys/dev/bktr; \
175	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
176	    ${DESTDIR}${INCLUDEDIR}/dev/bktr
177	cd ${.CURDIR}/../sys/dev/pci; \
178	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
179	    ${DESTDIR}${INCLUDEDIR}/dev/pci
180	cd ${.CURDIR}/../sys/contrib/altq/altq; \
181	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
182	    ${DESTDIR}${INCLUDEDIR}/altq
183	cd ${.CURDIR}/../sys/fs/cd9660/; \
184	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
185	    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
186.if ${MK_IPFILTER} != "no"
187	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
188	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
189	    ${DESTDIR}${INCLUDEDIR}/netinet
190.endif
191	cd ${.CURDIR}/../sys/contrib/pf/net; \
192	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
193	    ${DESTDIR}${INCLUDEDIR}/net
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
228symlinks:
229	@${ECHO} "Setting up symlinks to kernel source tree..."
230.for i in ${LDIRS}
231	cd ${.CURDIR}/../sys/$i; \
232	for h in *.h; do \
233		ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
234	done
235.endfor
236.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/pci}
237	cd ${.CURDIR}/../sys/$i; \
238	for h in *.h; do \
239		ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
240	done
241.endfor
242	cd ${.CURDIR}/../sys/dev/acpica; \
243	for h in acpiio.h; do \
244		ln -fs ../../../../sys/dev/acpica/$$h \
245		    ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
246	done
247	cd ${.CURDIR}/../sys/dev/agp; \
248	for h in agpreg.h; do \
249		ln -fs ../../../../sys/dev/agp/$$h \
250		    ${DESTDIR}${INCLUDEDIR}/dev/agp; \
251	done
252	cd ${.CURDIR}/../sys/dev/bktr; \
253	for h in ioctl_*.h; do \
254		ln -fs ../../../../sys/dev/bktr/$$h \
255		    ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
256	done
257	cd ${.CURDIR}/../sys/dev/pci; \
258	for h in pcireg.h; do \
259		ln -fs ../../../../sys/dev/pci/$$h \
260		    ${DESTDIR}${INCLUDEDIR}/dev/pci; \
261	done
262.for i in ${LSUBSUBDIRS}
263	cd ${.CURDIR}/../sys/$i; \
264	for h in *.h; do \
265		ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
266	done
267.endfor
268	cd ${.CURDIR}/../sys/contrib/altq/altq; \
269	for h in *.h; do \
270		ln -fs ../../../sys/contrib/altq/altq/$$h \
271		    ${DESTDIR}${INCLUDEDIR}/altq; \
272	done
273.if ${MK_IPFILTER} != "no"
274	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
275	for h in *.h; do \
276		ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
277		    ${DESTDIR}${INCLUDEDIR}/netinet; \
278	done
279.endif
280	cd ${.CURDIR}/../sys/contrib/pf/net; \
281	for h in *.h; do \
282		ln -fs ../../../sys/contrib/pf/net/$$h \
283		    ${DESTDIR}${INCLUDEDIR}/net; \
284	done
285	cd ${.CURDIR}/../sys/crypto; \
286	for h in rijndael/rijndael.h; do \
287		ln -fs ../../../sys/crypto/$$h \
288		    ${DESTDIR}${INCLUDEDIR}/crypto; \
289	done
290	cd ${.CURDIR}/../sys/opencrypto; \
291	for h in *.h; do \
292		ln -fs ../../../sys/opencrypto/$$h \
293		    ${DESTDIR}${INCLUDEDIR}/crypto; \
294	done
295	cd ${.CURDIR}/../sys/${MACHINE}/include; \
296	for h in *.h; do \
297		ln -fs ../../../sys/${MACHINE}/include/$$h \
298		    ${DESTDIR}${INCLUDEDIR}/machine; \
299	done
300.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
301	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
302	for h in *.h; do \
303		ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
304		    ${DESTDIR}${INCLUDEDIR}/machine/pc; \
305	done
306.endif
307.for _MARCH in ${_MARCHS}
308.if exists(${.CURDIR}/../sys/${_MARCH}/include)
309	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
310	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
311	cd ${.CURDIR}/../sys/${_MARCH}/include; \
312	for h in *.h; do \
313		ln -fs ../../../sys/${_MARCH}/include/$$h \
314		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
315	done
316.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
317	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
318	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
319	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
320	for h in *.h; do \
321		ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
322		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
323	done
324.endif
325.endif
326.endfor
327	cd ${.CURDIR}/../sys/fs/cd9660; \
328	for h in *.h; do \
329		ln -fs ../../../../sys/fs/cd9660/$$h \
330		    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
331	done
332	cd ${.CURDIR}/../sys/rpc; \
333	for h in types.h; do \
334		ln -fs ../../../sys/rpc/$$h \
335		    ${DESTDIR}${INCLUDEDIR}/rpc; \
336	done
337