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