xref: /freebsd/include/Makefile (revision f5f7c05209ca2c3748fd8b27c5e80ffad49120eb)
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 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 \
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/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#.if ${MK_IPX} != "no"
84_netipx=	netipx
85#.endif
86
87# Define SHARED to indicate whether you want symbolic links to the system
88# source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
89# probably only useful for developers and should be avoided if you do not
90# wish to tie your /usr/include and /usr/src together.
91#SHARED=	symlinks
92SHARED?=	copies
93
94INCS+=	osreldate.h
95
96osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh ${.CURDIR}/../sys/sys/param.h \
97    ${.CURDIR}/Makefile
98	@${ECHO} creating osreldate.h from newvers.sh
99	@MAKE=${MAKE}; \
100	PARAMFILE=${.CURDIR}/../sys/sys/param.h; \
101	. ${.CURDIR}/../sys/conf/newvers.sh; \
102	echo "$$COPYRIGHT" > osreldate.h; \
103	echo "#ifdef _KERNEL" >> osreldate.h; \
104	echo "#error \"<osreldate.h> cannot be used in the kernel, use <sys/param.h>\"" >> osreldate.h; \
105	echo "#else" >> osreldate.h; \
106	echo "#undef __FreeBSD_version" >> osreldate.h; \
107	echo "#define __FreeBSD_version $$RELDATE" >> osreldate.h; \
108	echo "#endif" >> osreldate.h
109
110.for i in ${LHDRS}
111INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
112.endfor
113.for i in ${MHDRS}
114INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
115.endfor
116.for i in ${PHDRS}
117INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
118.endfor
119
120.if ${MACHINE} != ${MACHINE_CPUARCH}
121_MARCHS=	${MACHINE_CPUARCH}
122.endif
123.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
124_MARCHS+=	x86
125.endif
126
127.if ${MK_STAGING} != "no"
128# tell bsd.incs.mk that we have it covered
129stage_includes:
130.endif
131
132.include <bsd.prog.mk>
133
134.if ${MK_STAGING} != "no" && !defined(_SKIP_BUILD)
135.if make(all)
136DESTDIR= ${STAGE_OBJTOP}
137# we want to keep this separate from the folk who
138# do staging "normally"
139INCLUDEDIR=	/include
140
141all:	stage_includes
142installincludes: buildincludes
143buildincludes: stage_prep
144
145stage_prep:
146	@mkdir -p ${DESTDIR}${INCLUDEDIR}
147	@touch $@
148
149stage_includes: .dirdep installincludes
150	@find ${DESTDIR}${INCLUDEDIR} -type d | while read d; do \
151		rm -f $$d/.dirdep; \
152		{ ln .dirdep $$d/.dirdep 2> /dev/null || \
153		cp -p .dirdep $$d/.dirdep; }; \
154	done
155	@touch $@
156.endif
157.endif
158
159installincludes: ${SHARED}
160${SHARED}: compat
161
162# Take care of stale directory-level symlinks.
163compat:
164.for i in ${LDIRS} ${LSUBDIRS} machine ${_MARCHS} crypto
165	if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
166		rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
167	fi
168.endfor
169	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
170	    -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
171	    -p ${DESTDIR}${INCLUDEDIR} > /dev/null
172.if ${MK_BIND_LIBS} != "no"
173	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
174	    -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
175	    -p ${DESTDIR}${INCLUDEDIR} > /dev/null
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
257symlinks:
258	@${ECHO} "Setting up symlinks to kernel source tree..."
259.for i in ${LDIRS}
260	cd ${.CURDIR}/../sys/$i; \
261	for h in *.h; do \
262		ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
263	done
264.endfor
265.for i in ${LSUBDIRS:Ndev/agp:Ndev/acpica:Ndev/bktr:Ndev/nand:Ndev/pci}
266	cd ${.CURDIR}/../sys/$i; \
267	for h in *.h; do \
268		ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
269	done
270.endfor
271	cd ${.CURDIR}/../sys/dev/acpica; \
272	for h in acpiio.h; do \
273		ln -fs ../../../../sys/dev/acpica/$$h \
274		    ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
275	done
276	cd ${.CURDIR}/../sys/dev/agp; \
277	for h in agpreg.h; do \
278		ln -fs ../../../../sys/dev/agp/$$h \
279		    ${DESTDIR}${INCLUDEDIR}/dev/agp; \
280	done
281	cd ${.CURDIR}/../sys/dev/bktr; \
282	for h in ioctl_*.h; do \
283		ln -fs ../../../../sys/dev/bktr/$$h \
284		    ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
285	done
286.if ${MK_NAND} != "no"
287	cd ${.CURDIR}/../sys/dev/nand; \
288	for h in nandsim.h nand_dev.h; do \
289		ln -fs ../../../../sys/dev/nand/$$h \
290		    ${DESTDIR}${INCLUDEDIR}/dev/nand; \
291	done
292.endif
293	cd ${.CURDIR}/../sys/dev/pci; \
294	for h in pcireg.h; do \
295		ln -fs ../../../../sys/dev/pci/$$h \
296		    ${DESTDIR}${INCLUDEDIR}/dev/pci; \
297	done
298.for i in ${LSUBSUBDIRS}
299	cd ${.CURDIR}/../sys/$i; \
300	for h in *.h; do \
301		ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
302	done
303.endfor
304	cd ${.CURDIR}/../sys/contrib/altq/altq; \
305	for h in *.h; do \
306		ln -fs ../../../sys/contrib/altq/altq/$$h \
307		    ${DESTDIR}${INCLUDEDIR}/altq; \
308	done
309.if ${MK_IPFILTER} != "no"
310	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
311	for h in *.h; do \
312		ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
313		    ${DESTDIR}${INCLUDEDIR}/netinet; \
314	done
315.endif
316	cd ${.CURDIR}/../sys/crypto; \
317	for h in rijndael/rijndael.h; do \
318		ln -fs ../../../sys/crypto/$$h \
319		    ${DESTDIR}${INCLUDEDIR}/crypto; \
320	done
321	cd ${.CURDIR}/../sys/opencrypto; \
322	for h in *.h; do \
323		ln -fs ../../../sys/opencrypto/$$h \
324		    ${DESTDIR}${INCLUDEDIR}/crypto; \
325	done
326	cd ${.CURDIR}/../sys/${MACHINE}/include; \
327	for h in *.h; do \
328		ln -fs ../../../sys/${MACHINE}/include/$$h \
329		    ${DESTDIR}${INCLUDEDIR}/machine; \
330	done
331.if exists(${.CURDIR}/../sys/${MACHINE}/include/pc)
332	cd ${.CURDIR}/../sys/${MACHINE}/include/pc; \
333	for h in *.h; do \
334		ln -fs ../../../../sys/${MACHINE}/include/pc/$$h \
335		    ${DESTDIR}${INCLUDEDIR}/machine/pc; \
336	done
337.endif
338.for _MARCH in ${_MARCHS}
339.if exists(${.CURDIR}/../sys/${_MARCH}/include)
340	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
341	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
342	cd ${.CURDIR}/../sys/${_MARCH}/include; \
343	for h in *.h; do \
344		ln -fs ../../../sys/${_MARCH}/include/$$h \
345		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}; \
346	done
347.if exists(${.CURDIR}/../sys/${_MARCH}/include/pc)
348	${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m 755 \
349	    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
350	cd ${.CURDIR}/../sys/${_MARCH}/include/pc; \
351	for h in *.h; do \
352		ln -fs ../../../../sys/${_MARCH}/include/pc/$$h \
353		    ${DESTDIR}${INCLUDEDIR}/${_MARCH}/pc; \
354	done
355.endif
356.endif
357.endfor
358	cd ${.CURDIR}/../sys/fs/cd9660; \
359	for h in *.h; do \
360		ln -fs ../../../../sys/fs/cd9660/$$h \
361		    ${DESTDIR}${INCLUDEDIR}/isofs/cd9660; \
362	done
363	cd ${.CURDIR}/../sys/rpc; \
364	for h in types.h; do \
365		ln -fs ../../../sys/rpc/$$h \
366		    ${DESTDIR}${INCLUDEDIR}/rpc; \
367	done
368