xref: /freebsd/include/Makefile (revision 63d45d7da0eac8efdeb765ac5caddfc2c5ca021e)
1#	@(#)Makefile	8.2 (Berkeley) 1/4/94
2# $FreeBSD$
3#
4# Doing a "make install" builds /usr/include.
5
6CLEANFILES= osreldate.h version vers.c
7SUBDIR= arpa protocols rpcsvc rpc
8INCS=	a.out.h ar.h assert.h bitstring.h complex.h cpio.h _ctype.h ctype.h \
9	db.h \
10	dirent.h dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \
11	fts.h ftw.h getopt.h glob.h grp.h \
12	hesiod.h histedit.h ieeefp.h ifaddrs.h \
13	inttypes.h iso646.h kenv.h langinfo.h libgen.h limits.h link.h \
14	locale.h malloc.h memory.h monetary.h mpool.h ndbm.h netconfig.h \
15	netdb.h nl_types.h nlist.h nss.h nsswitch.h objformat.h paths.h \
16	proc_service.h pthread.h \
17	pthread_np.h pwd.h ranlib.h readpassphrase.h regex.h regexp.h \
18	resolv.h runefile.h runetype.h search.h setjmp.h sgtty.h \
19	signal.h stab.h \
20	stdbool.h stddef.h stdio.h stdlib.h string.h stringlist.h \
21	strings.h sysexits.h tar.h tgmath.h \
22	time.h timeconv.h timers.h ttyent.h \
23	ulimit.h unistd.h utime.h utmp.h uuid.h varargs.h vis.h wchar.h \
24	wctype.h wordexp.h
25
26MHDRS=	float.h floatingpoint.h stdarg.h
27
28# posix4/mqueue.h is useless without an implementation and isn't installed:
29PHDRS=	sched.h semaphore.h _semaphore.h # mqueue.h
30
31LHDRS=	aio.h errno.h fcntl.h linker_set.h poll.h stdint.h syslog.h \
32	termios.h ucontext.h
33
34LDIRS=	cam geom net net80211 netatalk netatm netgraph netinet netinet6 \
35	netipsec netipx netkey netnatm netncp netsmb nfs nfsclient nfsserver \
36	pccard posix4 sys vm
37
38LSUBDIRS=	cam/scsi \
39	dev/acpica dev/an dev/bktr dev/firewire \
40	dev/ic dev/iicbus ${_dev_ieee488} dev/ofw \
41	dev/pbio dev/ppbus dev/smbus dev/usb dev/wi dev/utopia \
42	fs/devfs fs/fdescfs fs/fifofs fs/msdosfs fs/ntfs fs/nullfs \
43	fs/nwfs fs/portalfs fs/procfs fs/smbfs fs/udf fs/umapfs \
44	fs/unionfs \
45	geom/concat geom/gate geom/label geom/mirror geom/nop geom/raid3 \
46	geom/shsec geom/stripe \
47	isofs/cd9660 \
48	netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \
49	netgraph/atm netgraph/netflow \
50	security/mac_biba security/mac_bsdextended security/mac_lomac \
51	security/mac_mls security/mac_partition \
52	ufs/ffs ufs/ufs
53
54.if !defined(NO_GPIB)
55_dev_ieee488=	dev/ieee488
56.endif
57
58.if !defined(NO_BLUETOOTH)
59LSUBSUBDIRS=	netgraph/bluetooth/include
60.endif
61
62# Define SHARED to indicate whether you want symbolic links to the system
63# source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
64# probably only useful for developers and should be avoided if you do not
65# wish to tie your /usr/include and /usr/src together.
66#SHARED=	symlinks
67SHARED?=	copies
68
69INCS+=	osreldate.h
70
71osreldate.h:	${.CURDIR}/../sys/conf/newvers.sh \
72		${.CURDIR}/../sys/sys/param.h \
73		${.CURDIR}/Makefile
74	@${ECHO} creating osreldate.h from newvers.sh
75	@setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
76	MAKE=${MAKE} . ${.CURDIR}/../sys/conf/newvers.sh;	\
77	echo "$$COPYRIGHT" > osreldate.h;			\
78	echo "#ifdef _KERNEL" >> osreldate.h;			\
79	echo '#error "<osreldate.h> cannot be used in the kernel, use <sys/param.h>"' >> osreldate.h; \
80	echo "#else" >> osreldate.h;				\
81	echo \#'undef __FreeBSD_version' >> osreldate.h;	\
82	echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h; \
83	echo "#endif" >> osreldate.h
84
85.for i in ${LHDRS}
86INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
87.endfor
88.for i in ${MHDRS}
89INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
90.endfor
91.for i in ${PHDRS}
92INCSLINKS+=	posix4/$i ${INCLUDEDIR}/$i
93.endfor
94
95.include <bsd.prog.mk>
96
97installincludes: ${SHARED}
98${SHARED}: compat
99
100# Take care of stale directory-level symlinks.
101compat:
102.for i in ${LDIRS} ${LSUBDIRS} machine crypto
103	if [ -L ${DESTDIR}${INCLUDEDIR}/$i ]; then \
104		rm -f ${DESTDIR}${INCLUDEDIR}/$i; \
105	fi
106.endfor
107	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
108	    -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
109	    -p ${DESTDIR}${INCLUDEDIR}
110.if defined(WITH_BIND_LIBS) && !defined(NO_BIND)
111	mtree -deU ${MTREE_FOLLOWS_SYMLINKS} \
112	    -f ${.CURDIR}/../etc/mtree/BIND.include.dist \
113	    -p ${DESTDIR}${INCLUDEDIR}
114.endif
115
116copies:
117.for i in ${LDIRS} ${LSUBDIRS} ${LSUBSUBDIRS} altq crypto machine machine/pc
118.if exists(${DESTDIR}${INCLUDEDIR}/$i)
119	cd ${DESTDIR}${INCLUDEDIR}/$i; \
120	for h in *.h; do \
121		if [ -L $$h ]; then rm -f $$h; fi; \
122	done
123.endif
124.endfor
125.for i in ${LDIRS} ${LSUBDIRS:Ndev/acpica:Ndev/bktr} ${LSUBSUBDIRS}
126	cd ${.CURDIR}/../sys; \
127	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
128	    ${DESTDIR}${INCLUDEDIR}/$i
129.endfor
130	cd ${.CURDIR}/../sys/dev/acpica; \
131	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
132	    ${DESTDIR}${INCLUDEDIR}/dev/acpica
133	cd ${.CURDIR}/../sys/dev/bktr; \
134	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl_*.h \
135	    ${DESTDIR}${INCLUDEDIR}/dev/bktr
136	cd ${.CURDIR}/../sys/contrib/altq/altq; \
137	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
138	    ${DESTDIR}${INCLUDEDIR}/altq
139	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
140	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
141	    ${DESTDIR}${INCLUDEDIR}/netinet
142	cd ${.CURDIR}/../sys/contrib/pf/net; \
143	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
144	    ${DESTDIR}${INCLUDEDIR}/net
145	cd ${.CURDIR}/../sys/opencrypto; \
146	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
147	    ${DESTDIR}${INCLUDEDIR}/crypto
148	cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \
149	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
150	    ${DESTDIR}${INCLUDEDIR}/machine
151.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc)
152	cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc; \
153	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
154	    ${DESTDIR}${INCLUDEDIR}/machine/pc
155.endif
156
157symlinks:
158	@${ECHO} "Setting up symlinks to kernel source tree..."
159.for i in ${LDIRS}
160	cd ${.CURDIR}/../sys/$i; \
161	for h in *.h; do \
162		ln -fs ../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
163	done
164.endfor
165.for i in ${LSUBDIRS:Ndev/acpica:Ndev/bktr}
166	cd ${.CURDIR}/../sys/$i; \
167	for h in *.h; do \
168		ln -fs ../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
169	done
170.endfor
171	cd ${.CURDIR}/../sys/dev/acpica; \
172	for h in acpiio.h; do \
173		ln -fs ../../../../sys/dev/acpica/$$h \
174		    ${DESTDIR}${INCLUDEDIR}/dev/acpica; \
175	done
176	cd ${.CURDIR}/../sys/dev/bktr; \
177	for h in ioctl_*.h; do \
178		ln -fs ../../../../sys/dev/bktr/$$h \
179		    ${DESTDIR}${INCLUDEDIR}/dev/bktr; \
180	done
181.for i in ${LSUBSUBDIRS}
182	cd ${.CURDIR}/../sys/$i; \
183	for h in *.h; do \
184		ln -fs ../../../../../sys/$i/$$h ${DESTDIR}${INCLUDEDIR}/$i; \
185	done
186.endfor
187	cd ${.CURDIR}/../sys/contrib/altq/altq; \
188	for h in *.h; do \
189		ln -fs ../../../sys/contrib/altq/altq/$$h \
190		    ${DESTDIR}${INCLUDEDIR}/altq; \
191	done
192	cd ${.CURDIR}/../sys/contrib/ipfilter/netinet; \
193	for h in *.h; do \
194		ln -fs ../../../sys/contrib/ipfilter/netinet/$$h \
195		    ${DESTDIR}${INCLUDEDIR}/netinet; \
196	done
197	cd ${.CURDIR}/../sys/contrib/pf/net; \
198	for h in *.h; do \
199		ln -fs ../../../sys/contrib/pf/net/$$h \
200		    ${DESTDIR}${INCLUDEDIR}/net; \
201	done
202	cd ${.CURDIR}/../sys/opencrypto; \
203	for h in *.h; do \
204		ln -fs ../../../sys/opencrypto/$$h \
205		    ${DESTDIR}${INCLUDEDIR}/crypto; \
206	done
207	cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \
208	for h in *.h; do \
209		ln -fs ../../../sys/${MACHINE_ARCH}/include/$$h \
210		    ${DESTDIR}${INCLUDEDIR}/machine; \
211	done
212.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc)
213	cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc; \
214	for h in *.h; do \
215		ln -fs ../../../../sys/${MACHINE_ARCH}/include/pc/$$h \
216		    ${DESTDIR}${INCLUDEDIR}/machine/pc; \
217	done
218.endif
219