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