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