xref: /freebsd/include/Makefile (revision 3caf0790a80c2e10c82a3a07719cddb2065c65d1)
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
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 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_HESIOD} != "no"
72INCS+=	hesiod.h
73.endif
74
75.if ${MK_BLUETOOTH} != "no"
76LSUBSUBDIRS+=	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"
86CLEANFILES+=	_libiconv_compat.h
87INCS+=		_libiconv_compat.h iconv.h
88_libiconv_compat.h:	${.CURDIR}/Makefile
89	echo "/* Indicate whether libiconv symbols are present */" > _libiconv_compat.h
90.if ${MK_LIBICONV_COMPAT} == "yes"
91	echo "#define __LIBICONV_COMPAT" >> _libiconv_compat.h
92.else
93	echo "#undef __LIBICONV_COMPAT" >> _libiconv_compat.h
94.endif
95.endif
96
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.if ${MK_STAGING} != "no"
138# tell bsd.incs.mk that we have it covered
139stage_includes:
140.endif
141
142.include <bsd.prog.mk>
143
144.if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD)
145.if make(all)
146DESTDIR= ${STAGE_OBJTOP}
147
148all:	stage_includes
149installincludes: buildincludes
150buildincludes: stage_prep
151
152stage_prep:
153	@mkdir -p ${DESTDIR}${INCLUDEDIR}
154	@touch $@
155
156stage_includes: .dirdep installincludes
157	@touch $@
158.endif
159.endif
160
161installincludes: ${SHARED}
162${SHARED}: compat
163
164# Take care of stale directory-level symlinks.
165compat:
166.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
167	if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
168		rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
169	fi
170.endfor
171	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
172	    -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
173	    -p ${DESTDIR}${INCLUDEDIR} > /dev/null
174.if ${MK_META_MODE} == "yes"
175	touch ${.TARGET}
176.endif
177
178copies:
179.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
180	${_MARCHS}
181.if exists(${DESTDIR}${INCLUDEDIR}/$i)
182	cd ${DESTDIR}${INCLUDEDIR}/$i; \
183	for h in *.h; do \
184		if [ -L $$h ]; then rm -f $$h; fi; \
185	done
186.endif
187.endfor
188.for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS}
189	cd ${.CURDIR}/../sys; \
190	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
191	    ${DESTDIR}${INCLUDEDIR}/$i
192.endfor
193	cd ${.CURDIR}/../sys/dev/acpica; \
194	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
195	    ${DESTDIR}${INCLUDEDIR}/dev/acpica
196	cd ${.CURDIR}/../sys/dev/agp; \
197	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
198	    ${DESTDIR}${INCLUDEDIR}/dev/agp
199	cd ${.CURDIR}/../sys/dev/bktr; \
200	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
201	    ${DESTDIR}${INCLUDEDIR}/dev/bktr
202.if ${MK_NAND} != "no"
203	cd ${.CURDIR}/../sys/dev/nand; \
204	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \
205	    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
206	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \
207	    ${DESTDIR}${INCLUDEDIR}/dev/nand
208.endif
209	cd ${.CURDIR}/../sys/dev/pci; \
210	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
211	    ${DESTDIR}${INCLUDEDIR}/dev/pci
212	cd ${.CURDIR}/../sys/contrib/altq/altq; \
213	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
214	    ${DESTDIR}${INCLUDEDIR}/altq
215	cd ${.CURDIR}/../sys/fs/cd9660/; \
216	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
217	    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
218.if ${MK_IPFILTER} != "no"
219	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
220	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
221	    ${DESTDIR}${INCLUDEDIR}/netinet
222.endif
223	cd ${.CURDIR}/../sys/crypto; \
224	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
225	    ${DESTDIR}${INCLUDEDIR}/crypto
226	cd ${.CURDIR}/../sys/opencrypto; \
227	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
228	    ${DESTDIR}${INCLUDEDIR}/crypto
229	cd ${.CURDIR}/../sys/${MACHINE}/include; \
230	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
231	    ${DESTDIR}${INCLUDEDIR}/machine
232.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
233	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
234	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
235	    ${DESTDIR}${INCLUDEDIR}/machine/pc
236.endif
237.for _MARCH in ${_MARCHS}
238.if exists(${.CURDIR}/../sys/${_MARCH}/include)
239	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
240	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
241	cd ${.CURDIR}/../sys/${_MARCH}/include; \
242	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
243	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}
244.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
245	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
246	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
247	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
248	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
249	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
250.endif
251.endif
252.endfor
253	cd ${.CURDIR}/../sys/rpc; \
254	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
255	    ${DESTDIR}${INCLUDEDIR}/rpc
256.if ${MK_META_MODE} == "yes"
257	touch ${.TARGET}
258.endif
259
260symlinks:
261	@${ECHO} "Setting up symlinks to kernel source tree..."
262.for i in ${LDIRS}
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.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci}
269	cd ${.CURDIR}/../sys/$i; \
270	for h in *.h; do \
271		ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
272	done
273.endfor
274	cd ${.CURDIR}/../sys/dev/acpica; \
275	for h in acpiio.h; do \
276		ln -fs ../../../../sys/dev/acpica/$$h \
277		    ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
278	done
279	cd ${.CURDIR}/../sys/dev/agp; \
280	for h in agpreg.h; do \
281		ln -fs ../../../../sys/dev/agp/$$h \
282		    ${DESTDIR}${INCLUDEDIR}/dev/agp; \
283	done
284	cd ${.CURDIR}/../sys/dev/bktr; \
285	for h in ioctl_*.h; do \
286		ln -fs ../../../../sys/dev/bktr/$$h \
287		    ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
288	done
289.if ${MK_NAND} != "no"
290	cd ${.CURDIR}/../sys/dev/nand; \
291	for h in nandsim.h nand_dev.h; do \
292		ln -fs ../../../../sys/dev/nand/$$h \
293		    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
294	done
295.endif
296	cd ${.CURDIR}/../sys/dev/pci; \
297	for h in pcireg.h; do \
298		ln -fs ../../../../sys/dev/pci/$$h \
299		    ${DESTDIR}${INCLUDEDIR}/dev/pci; \
300	done
301.for i in ${LSUBSUBDIRS}
302	cd ${.CURDIR}/../sys/$i; \
303	for h in *.h; do \
304		ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
305	done
306.endfor
307	cd ${.CURDIR}/../sys/contrib/altq/altq; \
308	for h in *.h; do \
309		ln -fs ../../../sys/contrib/altq/altq/$$h \
310		    ${DESTDIR}${INCLUDEDIR}/altq; \
311	done
312.if ${MK_IPFILTER} != "no"
313	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
314	for h in *.h; do \
315		ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
316		    ${DESTDIR}${INCLUDEDIR}/netinet; \
317	done
318.endif
319	cd ${.CURDIR}/../sys/crypto; \
320	for h in rijndael/rijndael.h; do \
321		ln -fs ../../../sys/crypto/$$h \
322		    ${DESTDIR}${INCLUDEDIR}/crypto; \
323	done
324	cd ${.CURDIR}/../sys/opencrypto; \
325	for h in *.h; do \
326		ln -fs ../../../sys/opencrypto/$$h \
327		    ${DESTDIR}${INCLUDEDIR}/crypto; \
328	done
329	cd ${.CURDIR}/../sys/${MACHINE}/include; \
330	for h in *.h; do \
331		ln -fs ../../../sys/${MACHINE}/include/$$h \
332		    ${DESTDIR}${INCLUDEDIR}/machine; \
333	done
334.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
335	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
336	for h in *.h; do \
337		ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
338		    ${DESTDIR}${INCLUDEDIR}/machine/pc; \
339	done
340.endif
341.for _MARCH in ${_MARCHS}
342.if exists(${.CURDIR}/../sys/${_MARCH}/include)
343	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
344	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
345	cd ${.CURDIR}/../sys/${_MARCH}/include; \
346	for h in *.h; do \
347		ln -fs ../../../sys/${_MARCH}/include/$$h \
348		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
349	done
350.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
351	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
352	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
353	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
354	for h in *.h; do \
355		ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
356		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
357	done
358.endif
359.endif
360.endfor
361	cd ${.CURDIR}/../sys/fs/cd9660; \
362	for h in *.h; do \
363		ln -fs ../../../../sys/fs/cd9660/$$h \
364		    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
365	done
366	cd ${.CURDIR}/../sys/rpc; \
367	for h in types.h; do \
368		ln -fs ../../../sys/rpc/$$h \
369		    ${DESTDIR}${INCLUDEDIR}/rpc; \
370	done
371.if ${MK_META_MODE} == "yes"
372	touch ${.TARGET}
373.endif
374