xref: /dragonfly/include/Makefile (revision f4228790)
1#	@(#)Makefile	8.2 (Berkeley) 1/4/94
2# $FreeBSD: src/include/Makefile,v 1.109.2.27 2003/01/24 05:12:29 sam Exp $
3# $DragonFly: src/include/Makefile,v 1.42 2008/11/24 13:35:57 hasso Exp $
4#
5# Doing a make install builds /usr/include
6#
7# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
8# links.
9
10CLEANFILES= osreldate.h version vers.c
11SUBDIR= arpa protocols rpc rpcsvc
12INCS=	a.out.h ar.h assert.h bitstring.h complex.h cpio.h ctype.h db.h \
13	dirent.h disktab.h \
14	dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \
15	fts.h ftw.h getopt.h glob.h grp.h histedit.h \
16	iconv.h ieeefp.h ifaddrs.h iso646.h inttypes.h \
17	langinfo.h libgen.h limits.h link.h locale.h malloc.h math.h memory.h \
18	mpool.h monetary.h ndbm.h netconfig.h \
19	netdb.h nl_types.h nlist.h nss.h nsswitch.h objformat.h \
20	paths.h pthread.h pthread_np.h pwd.h \
21	ranlib.h readpassphrase.h regex.h regexp.h \
22	res_update.h resolv.h re_comp.h rmd160.h \
23	search.h setjmp.h sgtty.h \
24	signal.h stab.h stdarg.h stdbool.h stddef.h stdint.h stdio.h stdlib.h \
25	string.h stringlist.h strings.h struct.h sysexits.h tar.h time.h \
26	timeconv.h \
27	timers.h ttyent.h unistd.h ulimit.h utime.h utmp.h uuid.h vis.h \
28	wchar.h wctype.h wordexp.h
29
30.if defined(WANT_HESIOD)
31INCS+=	hesiod.h
32.endif
33
34MHDRS=	float.h floatingpoint.h varargs.h
35
36# Only for default SHARED=copies case
37SHDRS=	soundcard.h joystick.h
38
39LHDRS=	aio.h errno.h fcntl.h linker_set.h mqueue.h poll.h sched.h \
40	semaphore.h syslog.h termios.h ucontext.h
41
42# directories which also contain header files that need to be copied.
43# Other directories, like 'bus' and 'netproto', are created using mtree.
44#
45# XXX allow these directories to not contain header files.
46LDIRS=	net netbt netgraph netinet netinet6 sys vm
47
48# Subdirectories containing header files to copy.  In symlink mode
49# the subdirectory will be symlinked.  Care must be taken to adjust
50# LSYMSUBDIRS below to remove subdirectories whos parent directories.
51# If you make a mistake, part of your source tree might get overwritten
52# when buildworld is run.
53#
54LSUBDIRS=	bus/cam bus/cam/scsi \
55	emulation/linux \
56	vfs/msdosfs vfs/nfs vfs/ntfs vfs/nwfs \
57	vfs/smbfs vfs/udf vfs/ufs vfs/hammer \
58	net/vlan net/ipfw net/ip6fw net/dummynet net/sppp net/ip_mroute \
59	net/bridge net/tap net/tun net/ppp net/ppp_layer net/sl \
60	net/pf net/altq \
61	netgraph/UI netgraph/async netgraph/bpf netgraph/bridge \
62	netgraph/cisco netgraph/echo netgraph/eiface netgraph/etf \
63	netgraph/ether netgraph/fec netgraph/frame_relay netgraph/hole \
64	netgraph/iface netgraph/ksocket netgraph/l2tp netgraph/lmi \
65	netgraph/mppc netgraph/one2many netgraph/ppp \
66	netgraph/pppoe netgraph/pptpgre netgraph/rfc1490 netgraph/socket \
67	netgraph/tee netgraph/tty netgraph/vjc \
68	bus/cam bus/usb bus/pccard bus/pci bus/isa bus/ppbus \
69	netproto/atalk netproto/atm netproto/ipsec netproto/ipx \
70	netproto/key netproto/natm netproto/ncp netproto/ns netproto/smb \
71	netproto/atm/ipatm netproto/atm/sigpvc netproto/atm/spans \
72	netproto/atm/uni netproto/802_11 netproto/mpls
73
74LSUBDIRS3= vfs/isofs/cd9660 net/i4b/include \
75	dev/misc/lpt dev/misc/ppi \
76	dev/netif/wi \
77	dev/raid/ciss \
78	dev/video/bktr dev/video/meteor
79
80# For SHARED=symlinks, bus/cam and netproto/atm are symlinks, so cam/scsi
81# and netproto/atm/* are taken care of
82LSYMSUBDIRS=	${LSUBDIRS:Nbus/cam/scsi:Nnetproto/atm/*:Nnet/*:Nnetgraph/*}
83LSYMSUBDIRS3=	${LSUBDIRS3:Nnet/*}
84
85# For obsolete headers which need to be removed
86RMHEADERS=	machine/ansi.h sys/inttypes.h
87
88# Define SHARED to indicate whether you want symbolic links to the system
89# source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
90# probably only useful for developers and should be avoided if you do not
91# wish to tie your /usr/include and /usr/src together.
92#SHARED=	symlinks
93SHARED?=	copies
94
95INCS+=	osreldate.h
96
97osreldate.h:	${.CURDIR}/../sys/conf/newvers.sh \
98		${.CURDIR}/../sys/sys/param.h
99	@${ECHO} creating osreldate.h from newvers.sh
100	setvar 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 must not be used in the kernel, use sys/param.h"' >> osreldate.h; \
105	echo "#else" >> osreldate.h;				\
106	echo "#undef __DragonFly_version" >> osreldate.h;	\
107	echo "#define __DragonFly_version $$RELDATE" >> osreldate.h; \
108	echo "#ifdef __FreeBSD__" >> osreldate.h;		\
109	echo "#undef __FreeBSD_version" >> osreldate.h;	\
110	echo "#define __FreeBSD_version 480101" >> osreldate.h; \
111	echo "#endif" >> osreldate.h;				\
112	echo "#endif" >> osreldate.h
113
114.for i in ${LHDRS}
115INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
116.endfor
117.for i in ${MHDRS}
118INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
119.endfor
120INCSLINKS+=	bus/cam ${INCLUDEDIR}/cam
121INCSLINKS+=	vfs/msdosfs ${INCLUDEDIR}/msdosfs
122INCSLINKS+=	vfs/isofs ${INCLUDEDIR}/isofs
123INCSLINKS+=	vfs/mfs ${INCLUDEDIR}/mfs
124INCSLINKS+=	vfs/nfs ${INCLUDEDIR}/nfs
125INCSLINKS+=	vfs/ntfs ${INCLUDEDIR}/ntfs
126INCSLINKS+=	vfs/nwfs ${INCLUDEDIR}/nwfs
127INCSLINKS+=	vfs ${INCLUDEDIR}/fs
128# this is for <ufs/ufs/...> and <ufs/ffs/...> paths used by ports
129# It is hopefully a temporary hack until we have environments working.
130INCSLINKS+=	vfs ${INCLUDEDIR}/ufs
131INCSLINKS+=	ufs ${INCLUDEDIR}/vfs/ffs
132INCSLINKS+=	emulation ${INCLUDEDIR}/compat
133INCSLINKS+=	netproto/atalk ${INCLUDEDIR}/netatalk
134INCSLINKS+=	netproto/atm ${INCLUDEDIR}/netatm
135INCSLINKS+=	netproto/ipsec ${INCLUDEDIR}/netipsec
136INCSLINKS+=	netproto/ipx ${INCLUDEDIR}/netipx
137INCSLINKS+=	netproto/key ${INCLUDEDIR}/netkey
138INCSLINKS+=	netproto/natm ${INCLUDEDIR}/netnatm
139INCSLINKS+=	netproto/ncp ${INCLUDEDIR}/netncp
140INCSLINKS+=	netproto/ns ${INCLUDEDIR}/netns
141INCSLINKS+=	netproto/smb ${INCLUDEDIR}/netsmb
142INCSLINKS+=	bus/pccard ${INCLUDEDIR}/pccard
143
144# NOTE!
145#
146# machine/ header files come from the platform architecture and
147# cpu/ header files come from the cpu architecture.  All code outside
148# of the machine header files ALWAYS #include's <machine/blah.h>.  So
149# if the platform architecture is missing a header file we have to
150# copy it in from the cpu architecture.  This way we do not have to
151# create dozens of pure forwarding headers for files that platform
152# architecture does not need to enhance.
153
154mtree_setup:
155.for i in ${LDIRS} ${LSYMSUBDIRS} ${LSYMSUBDIRS3} machine cpu crypto dev/acpica
156	if [ -h ${DESTDIR}/usr/include/$i ]; then \
157		rm -f ${DESTDIR}/usr/include/$i; \
158	fi
159.endfor
160	mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
161		-p ${DESTDIR}/usr/include
162
163copies:		mtree_setup
164.for i in ${LDIRS} ${LSUBDIRS} ${LSUBDIRS3}
165	cd ${.CURDIR}/../sys; \
166		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
167		${DESTDIR}/usr/include/$i
168.endfor
169	cd ${.CURDIR}/../sys; \
170		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 opencrypto/*.h \
171		${DESTDIR}/usr/include/crypto
172	cd ${.CURDIR}/../sys/dev/acpica5; \
173		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
174		${DESTDIR}/usr/include/dev/acpica
175.if exists(${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include)
176	cd ${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include; \
177		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
178		${DESTDIR}/usr/include/cpu
179	# XXX this will cause quickworld to rebuild more junk
180	# then it needs to.
181	cpdup -o ${DESTDIR}/usr/include/cpu ${DESTDIR}/usr/include/machine
182.endif
183.if exists(${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include)
184	cd ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include; \
185		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
186		${DESTDIR}/usr/include/machine
187.if exists(${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include/pc)
188	cd ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include/pc; \
189		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
190		${DESTDIR}/usr/include/machine/pc
191.endif
192.endif
193.if exists(${.CURDIR}/../sys/net/i4b/include/${MACHINE_ARCH})
194	cd ${.CURDIR}/../sys/net/i4b/include/${MACHINE_ARCH}; \
195		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
196		${DESTDIR}/usr/include/i4b_machine
197.endif
198.for i in ${SHDRS}
199	${LN} -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
200.endfor
201.for i in ${RMHEADERS}
202	rm -f ${DESTDIR}/usr/include/$i
203.endfor
204
205symlinks:	mtree_setup
206	@${ECHO} "Setting up symlinks to kernel source tree..."
207.for i in ${LDIRS}
208	rm -rf ${DESTDIR}/usr/include/$i
209	${LN} -s ../../sys/$i ${DESTDIR}/usr/include/$i
210.endfor
211	rm -rf ${DESTDIR}/usr/include/crypto
212	${LN} -s ../../sys/opencrypto ${DESTDIR}/usr/include/crypto
213.for i in ${LSYMSUBDIRS}
214	rm -rf ${DESTDIR}/usr/include/$i
215	${LN} -s ../../../sys/$i ${DESTDIR}/usr/include/$i
216.endfor
217.for i in ${LSYMSUBDIRS3}
218	rm -rf ${DESTDIR}/usr/include/$i
219	${LN} -s ../../../../sys/$i ${DESTDIR}/usr/include/$i
220.endfor
221	rm -rf ${DESTDIR}/usr/include/cpu
222	${LN} -s ../../sys/cpu/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/cpu
223	rm -rf ${DESTDIR}/usr/include/machine
224	cpdup ${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include \
225		${DESTDIR}/usr/include/machine
226	cpdup -o ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include \
227		${DESTDIR}/usr/include/machine
228	rm -rf ${DESTDIR}/usr/include/i4b_machine
229	${LN} -s ../../sys/net/i4b/include/${MACHINE_ARCH} ${DESTDIR}/usr/include/i4b_machine
230
231.include <bsd.prog.mk>
232
233installincludes: ${SHARED}
234