xref: /freebsd/include/Makefile (revision 4fd0d10e0fe684211328bc148edf89a792425b39)
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
107osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh ${.CURDIR}/../sys/sys/param.h \
108    ${.CURDIR}/Makefile
109	@${ECHO} creating osreldate.h from newvers.sh
110	@MAKE=${MAKE}; \
111	PARAMFILE=${.CURDIR}/../sys/sys/param.h; \
112	. ${.CURDIR}/../sys/conf/newvers.sh; \
113	rm -f osreldate.h; \
114	echo "$$COPYRIGHT" > osreldate.h; \
115	echo "#ifdef _KERNEL" >> osreldate.h; \
116	echo "#error \"<osreldate.h> cannot be used in the kernel, use <sys/param.h>\"" >> osreldate.h; \
117	echo "#else" >> osreldate.h; \
118	echo "#undef __FreeBSD_version" >> osreldate.h; \
119	echo "#define __FreeBSD_version $$RELDATE" >> osreldate.h; \
120	echo "#endif" >> osreldate.h
121
122.for i in ${LHDRS}
123INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
124.endfor
125.for i in ${MHDRS}
126INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
127.endfor
128.for i in ${PHDRS}
129INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
130.endfor
131
132.if ${MACHINE} != ${MACHINE_CPUARCH}
133_MARCHS=	${MACHINE_CPUARCH}
134.endif
135.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
136_MARCHS+=	x86
137.endif
138
139.if ${MK_STAGING} != "no"
140# tell bsd.incs.mk that we have it covered
141stage_includes:
142.endif
143
144.include <bsd.prog.mk>
145
146.if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD)
147.if make(all)
148DESTDIR= ${STAGE_OBJTOP}
149
150all:	stage_includes
151installincludes: buildincludes
152buildincludes: stage_prep
153
154stage_prep:
155	@mkdir -p ${DESTDIR}${INCLUDEDIR}
156	@touch $@
157
158stage_includes: .dirdep installincludes
159	@touch $@
160.endif
161.endif
162
163installincludes: ${SHARED}
164${SHARED}: compat
165
166# Take care of stale directory-level symlinks.
167compat:
168.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
169	if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
170		rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
171	fi
172.endfor
173	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
174	    -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
175	    -p ${DESTDIR}${INCLUDEDIR} > /dev/null
176.if ${MK_BIND_LIBS} != "no"
177	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
178	    -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
179	    -p ${DESTDIR}${INCLUDEDIR} > /dev/null
180.endif
181.if ${MK_META_MODE} == "yes"
182	touch ${.TARGET}
183.endif
184
185copies:
186.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc \
187	${_MARCHS}
188.if exists(${DESTDIR}${INCLUDEDIR}/$i)
189	cd ${DESTDIR}${INCLUDEDIR}/$i; \
190	for h in *.h; do \
191		if [ -L $$h ]; then rm -f $$h; fi; \
192	done
193.endif
194.endfor
195.for i in ${LDIRS} ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci} ${LSUBSUBDIRS}
196	cd ${.CURDIR}/../sys; \
197	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
198	    ${DESTDIR}${INCLUDEDIR}/$i
199.endfor
200	cd ${.CURDIR}/../sys/dev/acpica; \
201	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
202	    ${DESTDIR}${INCLUDEDIR}/dev/acpica
203	cd ${.CURDIR}/../sys/dev/agp; \
204	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 agpreg.h \
205	    ${DESTDIR}${INCLUDEDIR}/dev/agp
206	cd ${.CURDIR}/../sys/dev/bktr; \
207	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
208	    ${DESTDIR}${INCLUDEDIR}/dev/bktr
209.if ${MK_NAND} != "no"
210	cd ${.CURDIR}/../sys/dev/nand; \
211	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nandsim.h \
212	    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
213	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 nand_dev.h \
214	    ${DESTDIR}${INCLUDEDIR}/dev/nand
215.endif
216	cd ${.CURDIR}/../sys/dev/pci; \
217	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 pcireg.h \
218	    ${DESTDIR}${INCLUDEDIR}/dev/pci
219	cd ${.CURDIR}/../sys/contrib/altq/altq; \
220	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
221	    ${DESTDIR}${INCLUDEDIR}/altq
222	cd ${.CURDIR}/../sys/fs/cd9660/; \
223	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
224	    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660
225.if ${MK_IPFILTER} != "no"
226	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
227	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
228	    ${DESTDIR}${INCLUDEDIR}/netinet
229.endif
230	cd ${.CURDIR}/../sys/crypto; \
231	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 rijndael/rijndael.h \
232	    ${DESTDIR}${INCLUDEDIR}/crypto
233	cd ${.CURDIR}/../sys/opencrypto; \
234	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
235	    ${DESTDIR}${INCLUDEDIR}/crypto
236	cd ${.CURDIR}/../sys/${MACHINE}/include; \
237	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
238	    ${DESTDIR}${INCLUDEDIR}/machine
239.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
240	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
241	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
242	    ${DESTDIR}${INCLUDEDIR}/machine/pc
243.endif
244.for _MARCH in ${_MARCHS}
245.if exists(${.CURDIR}/../sys/${_MARCH}/include)
246	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
247	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
248	cd ${.CURDIR}/../sys/${_MARCH}/include; \
249	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
250	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}
251.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
252	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
253	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
254	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
255	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
256	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc
257.endif
258.endif
259.endfor
260	cd ${.CURDIR}/../sys/rpc; \
261	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
262	    ${DESTDIR}${INCLUDEDIR}/rpc
263.if ${MK_META_MODE} == "yes"
264	touch ${.TARGET}
265.endif
266
267symlinks:
268	@${ECHO} "Setting up symlinks to kernel source tree..."
269.for i in ${LDIRS}
270	cd ${.CURDIR}/../sys/$i; \
271	for h in *.h; do \
272		ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
273	done
274.endfor
275.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci}
276	cd ${.CURDIR}/../sys/$i; \
277	for h in *.h; do \
278		ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
279	done
280.endfor
281	cd ${.CURDIR}/../sys/dev/acpica; \
282	for h in acpiio.h; do \
283		ln -fs ../../../../sys/dev/acpica/$$h \
284		    ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
285	done
286	cd ${.CURDIR}/../sys/dev/agp; \
287	for h in agpreg.h; do \
288		ln -fs ../../../../sys/dev/agp/$$h \
289		    ${DESTDIR}${INCLUDEDIR}/dev/agp; \
290	done
291	cd ${.CURDIR}/../sys/dev/bktr; \
292	for h in ioctl_*.h; do \
293		ln -fs ../../../../sys/dev/bktr/$$h \
294		    ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
295	done
296.if ${MK_NAND} != "no"
297	cd ${.CURDIR}/../sys/dev/nand; \
298	for h in nandsim.h nand_dev.h; do \
299		ln -fs ../../../../sys/dev/nand/$$h \
300		    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
301	done
302.endif
303	cd ${.CURDIR}/../sys/dev/pci; \
304	for h in pcireg.h; do \
305		ln -fs ../../../../sys/dev/pci/$$h \
306		    ${DESTDIR}${INCLUDEDIR}/dev/pci; \
307	done
308.for i in ${LSUBSUBDIRS}
309	cd ${.CURDIR}/../sys/$i; \
310	for h in *.h; do \
311		ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
312	done
313.endfor
314	cd ${.CURDIR}/../sys/contrib/altq/altq; \
315	for h in *.h; do \
316		ln -fs ../../../sys/contrib/altq/altq/$$h \
317		    ${DESTDIR}${INCLUDEDIR}/altq; \
318	done
319.if ${MK_IPFILTER} != "no"
320	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
321	for h in *.h; do \
322		ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
323		    ${DESTDIR}${INCLUDEDIR}/netinet; \
324	done
325.endif
326	cd ${.CURDIR}/../sys/crypto; \
327	for h in rijndael/rijndael.h; do \
328		ln -fs ../../../sys/crypto/$$h \
329		    ${DESTDIR}${INCLUDEDIR}/crypto; \
330	done
331	cd ${.CURDIR}/../sys/opencrypto; \
332	for h in *.h; do \
333		ln -fs ../../../sys/opencrypto/$$h \
334		    ${DESTDIR}${INCLUDEDIR}/crypto; \
335	done
336	cd ${.CURDIR}/../sys/${MACHINE}/include; \
337	for h in *.h; do \
338		ln -fs ../../../sys/${MACHINE}/include/$$h \
339		    ${DESTDIR}${INCLUDEDIR}/machine; \
340	done
341.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
342	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
343	for h in *.h; do \
344		ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
345		    ${DESTDIR}${INCLUDEDIR}/machine/pc; \
346	done
347.endif
348.for _MARCH in ${_MARCHS}
349.if exists(${.CURDIR}/../sys/${_MARCH}/include)
350	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
351	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
352	cd ${.CURDIR}/../sys/${_MARCH}/include; \
353	for h in *.h; do \
354		ln -fs ../../../sys/${_MARCH}/include/$$h \
355		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
356	done
357.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
358	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
359	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
360	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
361	for h in *.h; do \
362		ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
363		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
364	done
365.endif
366.endif
367.endfor
368	cd ${.CURDIR}/../sys/fs/cd9660; \
369	for h in *.h; do \
370		ln -fs ../../../../sys/fs/cd9660/$$h \
371		    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
372	done
373	cd ${.CURDIR}/../sys/rpc; \
374	for h in types.h; do \
375		ln -fs ../../../sys/rpc/$$h \
376		    ${DESTDIR}${INCLUDEDIR}/rpc; \
377	done
378.if ${MK_META_MODE} == "yes"
379	touch ${.TARGET}
380.endif
381