Makefile revision 280427
1#	@(#)Makefile	8.2 (Berkeley) 1/4/94
2# $FreeBSD: stable/10/include/Makefile 280427 2015-03-24 08:24:55Z ngie $
3#
4# Doing a "make install" builds /usr/include.
5
6.include <bsd.own.mk>
7
8CLEANFILES= osreldate.h version vers.c
9SUBDIR= arpa 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 \
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
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 stdatomic.h stdint.h \
37	syslog.h ucontext.h
38
39LDIRS=	bsm cam geom net net80211 netatalk netgraph netinet netinet6 \
40	netipsec ${_netipx} netnatm 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/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
61LSUBSUBDIRS=	dev/mpt/mpilib
62
63.if ${MK_BLUETOOTH} != "no"
64LSUBSUBDIRS+=	netgraph/bluetooth/include
65.endif
66
67.if ${MK_GPIB} != "no"
68_dev_ieee488=	dev/ieee488
69.endif
70
71.if ${MK_GSSAPI} != "no"
72SUBDIR+=	gssapi
73INCS+=		gssapi.h
74.endif
75
76.if ${MK_HESIOD} != "no"
77INCS+=	hesiod.h
78.endif
79
80# XXX unconditionally needed by <netsmb/netbios.h>
81#.if ${MK_IPX} != "no"
82_netipx=	netipx
83#.endif
84
85# Handle the #define aliases for libiconv
86.if ${MK_ICONV} == "yes"
87INCS+=		iconv.h
88.endif
89
90.if ${MK_USB} != "no"
91LSUBDIRS+=	dev/usb
92.endif
93
94.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "powerpc64"
95_dev_powermac_nvram=	dev/powermac_nvram
96.endif
97
98# Define SHARED to indicate whether you want symbolic links to the system
99# source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
100# probably only useful for developers and should be avoided if you do not
101# wish to tie your /usr/include and /usr/src together.
102#SHARED=	symlinks
103SHARED?=	copies
104
105INCS+=	osreldate.h
106
107SYSDIR=			${.CURDIR}/../sys
108NEWVERS_SH=		${SYSDIR}/conf/newvers.sh
109PARAM_H=		${SYSDIR}/sys/param.h
110MK_OSRELDATE_SH=	${.CURDIR}/mk-osreldate.sh
111
112osreldate.h vers.c: ${NEWVERS_SH} ${PARAM_H} ${MK_OSRELDATE_SH}
113	env ECHO="${ECHO}" \
114	    MAKE="${MAKE}" \
115	    NEWVERS_SH=${NEWVERS_SH} \
116	    PARAM_H=${PARAM_H} \
117	    SYSDIR=${SYSDIR} \
118	    sh ${MK_OSRELDATE_SH}
119
120.for i in ${LHDRS}
121INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
122.endfor
123.for i in ${MHDRS}
124INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
125.endfor
126.for i in ${PHDRS}
127INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
128.endfor
129
130.if ${MACHINE} != ${MACHINE_CPUARCH}
131_MARCHS=	${MACHINE_CPUARCH}
132.endif
133.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
134_MARCHS+=	x86
135.endif
136
137.include <bsd.prog.mk>
138
139installincludes: ${SHARED}
140${SHARED}: compat
141
142# Take care of stale directory-level symlinks.
143compat:
144.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
145	if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
146		rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
147	fi
148.endfor
149	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
150	    -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
151	    -p ${DESTDIR}${INCLUDEDIR}
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/nand: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	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpi_hpet.h \
172	    ${DESTDIR}${INCLUDEDIR}/dev/acpica
173	cd ${.CURDIR}/../sys/dev/agp; \
174	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
175	    ${DESTDIR}${INCLUDEDIR}/dev/agp
176	cd ${.CURDIR}/../sys/dev/bktr; \
177	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
178	    ${DESTDIR}${INCLUDEDIR}/dev/bktr
179.if ${MK_NAND} != "no"
180	cd ${.CURDIR}/../sys/dev/nand; \
181	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \
182	    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
183	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \
184	    ${DESTDIR}${INCLUDEDIR}/dev/nand
185.endif
186	cd ${.CURDIR}/../sys/dev/pci; \
187	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
188	    ${DESTDIR}${INCLUDEDIR}/dev/pci
189	cd ${.CURDIR}/../sys/contrib/altq/altq; \
190	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
191	    ${DESTDIR}${INCLUDEDIR}/altq
192	cd ${.CURDIR}/../sys/fs/cd9660/; \
193	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
194	    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
195.if ${MK_IPFILTER} != "no"
196	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
197	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
198	    ${DESTDIR}${INCLUDEDIR}/netinet
199.endif
200.if ${MK_PF} != "no"
201	cd ${.CURDIR}/../sys/netpfil/pf; \
202	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
203	    ${DESTDIR}${INCLUDEDIR}/netpfil/pf
204.endif
205	cd ${.CURDIR}/../sys/crypto; \
206	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
207	    ${DESTDIR}${INCLUDEDIR}/crypto
208	cd ${.CURDIR}/../sys/opencrypto; \
209	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
210	    ${DESTDIR}${INCLUDEDIR}/crypto
211	cd ${.CURDIR}/../sys/${MACHINE}/include; \
212	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
213	    ${DESTDIR}${INCLUDEDIR}/machine
214.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
215	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
216	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
217	    ${DESTDIR}${INCLUDEDIR}/machine/pc
218.endif
219.for _MARCH in ${_MARCHS}
220.if exists(${.CURDIR}/../sys/${_MARCH}/include)
221	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
222	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
223	cd ${.CURDIR}/../sys/${_MARCH}/include; \
224	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
225	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}
226.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
227	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
228	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
229	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
230	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
231	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
232.endif
233.endif
234.endfor
235	cd ${.CURDIR}/../sys/rpc; \
236	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
237	    ${DESTDIR}${INCLUDEDIR}/rpc
238
239symlinks:
240	@${ECHO} "Setting up symlinks to kernel source tree..."
241.for i in ${LDIRS}
242	cd ${.CURDIR}/../sys/$i; \
243	for h in *.h; do \
244		ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
245	done
246.endfor
247.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci}
248	cd ${.CURDIR}/../sys/$i; \
249	for h in *.h; do \
250		ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
251	done
252.endfor
253	cd ${.CURDIR}/../sys/dev/acpica; \
254	for h in acpiio.h acpi_hpet.h; do \
255		ln -fs ../../../../sys/dev/acpica/$$h \
256		    ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
257	done
258	cd ${.CURDIR}/../sys/dev/agp; \
259	for h in agpreg.h; do \
260		ln -fs ../../../../sys/dev/agp/$$h \
261		    ${DESTDIR}${INCLUDEDIR}/dev/agp; \
262	done
263	cd ${.CURDIR}/../sys/dev/bktr; \
264	for h in ioctl_*.h; do \
265		ln -fs ../../../../sys/dev/bktr/$$h \
266		    ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
267	done
268.if ${MK_NAND} != "no"
269	cd ${.CURDIR}/../sys/dev/nand; \
270	for h in nandsim.h nand_dev.h; do \
271		ln -fs ../../../../sys/dev/nand/$$h \
272		    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
273	done
274.endif
275	cd ${.CURDIR}/../sys/dev/pci; \
276	for h in pcireg.h; do \
277		ln -fs ../../../../sys/dev/pci/$$h \
278		    ${DESTDIR}${INCLUDEDIR}/dev/pci; \
279	done
280.for i in ${LSUBSUBDIRS}
281	cd ${.CURDIR}/../sys/$i; \
282	for h in *.h; do \
283		ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
284	done
285.endfor
286	cd ${.CURDIR}/../sys/contrib/altq/altq; \
287	for h in *.h; do \
288		ln -fs ../../../sys/contrib/altq/altq/$$h \
289		    ${DESTDIR}${INCLUDEDIR}/altq; \
290	done
291.if ${MK_IPFILTER} != "no"
292	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
293	for h in *.h; do \
294		ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
295		    ${DESTDIR}${INCLUDEDIR}/netinet; \
296	done
297.endif
298.if ${MK_PF} != "no"
299	cd ${.CURDIR}/../sys/netpfil/pf; \
300	for h in *.h; do \
301		ln -fs ../../../../sys/netpfil/pf/$$h \
302		    ${DESTDIR}${INCLUDEDIR}/netpfil/pf; \
303	done
304.endif
305	cd ${.CURDIR}/../sys/crypto; \
306	for h in rijndael/rijndael.h; do \
307		ln -fs ../../../sys/crypto/$$h \
308		    ${DESTDIR}${INCLUDEDIR}/crypto; \
309	done
310	cd ${.CURDIR}/../sys/opencrypto; \
311	for h in *.h; do \
312		ln -fs ../../../sys/opencrypto/$$h \
313		    ${DESTDIR}${INCLUDEDIR}/crypto; \
314	done
315	cd ${.CURDIR}/../sys/${MACHINE}/include; \
316	for h in *.h; do \
317		ln -fs ../../../sys/${MACHINE}/include/$$h \
318		    ${DESTDIR}${INCLUDEDIR}/machine; \
319	done
320.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
321	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
322	for h in *.h; do \
323		ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
324		    ${DESTDIR}${INCLUDEDIR}/machine/pc; \
325	done
326.endif
327.for _MARCH in ${_MARCHS}
328.if exists(${.CURDIR}/../sys/${_MARCH}/include)
329	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
330	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
331	cd ${.CURDIR}/../sys/${_MARCH}/include; \
332	for h in *.h; do \
333		ln -fs ../../../sys/${_MARCH}/include/$$h \
334		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
335	done
336.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
337	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
338	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
339	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
340	for h in *.h; do \
341		ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
342		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
343	done
344.endif
345.endif
346.endfor
347	cd ${.CURDIR}/../sys/fs/cd9660; \
348	for h in *.h; do \
349		ln -fs ../../../../sys/fs/cd9660/$$h \
350		    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
351	done
352	cd ${.CURDIR}/../sys/rpc; \
353	for h in types.h; do \
354		ln -fs ../../../sys/rpc/$$h \
355		    ${DESTDIR}${INCLUDEDIR}/rpc; \
356	done
357