xref: /dragonfly/include/Makefile (revision 655933d6)
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#
4# Doing a ``make install`` builds /usr/include
5#
6# The ``rm -rf''s used below are safe because rm doesn't follow symbolic
7# links.
8
9CLEANFILES= osreldate.h version vers.c vers.txt
10SUBDIR= arpa protocols rpc rpcsvc xlocale
11INCS=	a.out.h alloca.h ar.h assert.h bitstring.h byteswap.h \
12	cpio.h ctype.h db.h dirent.h disktab.h \
13	dlfcn.h elf.h elf-hints.h endian.h err.h \
14	float.h fmtmsg.h fnmatch.h fstab.h fts.h ftw.h \
15	getopt.h glob.h grp.h \
16	iconv.h ieeefp.h ifaddrs.h iso646.h inttypes.h kenv.h \
17	langinfo.h libgen.h limits.h link.h locale.h memory.h \
18	mntopts.h mpool.h mqueue.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 \
22	re_comp.h resolv.h res_update.h runetype.h \
23	search.h semaphore.h setjmp.h signal.h spawn.h \
24	stdalign.h stdarg.h stdbool.h \
25	stddef.h stdint.h stdio.h stdlib.h stdnoreturn.h \
26	string.h stringlist.h strings.h sysexits.h \
27	tar.h termios.h time.h \
28	timeconv.h \
29	timers.h ttyent.h \
30	uchar.h unistd.h ulimit.h utime.h utmpx.h \
31	uuid.h vis.h \
32	wchar.h wctype.h wordexp.h xlocale.h
33
34.if defined(WANT_HESIOD)
35INCS+=	hesiod.h
36.endif
37
38# Only for default SHARED=copies case
39SHDRS=	soundcard.h joystick.h
40
41LHDRS=	aio.h errno.h fcntl.h linker_set.h poll.h sched.h syslog.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 netgraph7 netinet netinet6 sys vm
48
49# Subdirectories containing header files to copy.  In symlink mode
50# the subdirectory will be symlinked.
51#
52# NOTE: Care must be taken to adjust LSYMSUBDIRS below to remove
53#       subdirectories whos parent directory is also listed.
54#       If you make a mistake, part of your source tree might get
55#       overwritten when buildworld is run.
56#
57LSUBDIRS= \
58	bus/cam bus/cam/scsi \
59	bus/isa bus/pccard bus/pci bus/ppbus bus/smbus bus/u4b \
60	dev/disk/dm \
61	dev/disk/mpt/mpilib \
62	dev/misc/lpt dev/misc/ppi \
63	dev/netif/wi \
64	dev/raid/ciss dev/raid/mfi \
65	dev/smbus/smb \
66	dev/video/bktr dev/video/meteor \
67	dev/virtual/nvmm dev/virtual/nvmm/x86 \
68	gnu/vfs/ext2fs \
69	libprop \
70	net/bridge net/tap net/tun net/ppp_layer net/sl \
71	net/pf net/altq \
72	net/vlan net/ipfw net/ip6fw net/dummynet net/sppp net/ip_mroute \
73	net/ipfw3 net/ipfw3_basic net/ipfw3_layer2 net/ipfw3_layer4 \
74	net/ipfw3_nat net/dummynet3 \
75	net/lagg \
76	netgraph/UI netgraph/async netgraph/bpf netgraph/bridge \
77	netgraph/cisco netgraph/echo netgraph/eiface netgraph/etf \
78	netgraph/ether netgraph/fec netgraph/frame_relay netgraph/hole \
79	netgraph/iface netgraph/ksocket netgraph/l2tp netgraph/lmi \
80	netgraph/mppc netgraph/one2many netgraph/ppp \
81	netgraph/pppoe netgraph/pptpgre netgraph/rfc1490 netgraph/socket \
82	netgraph/tee netgraph/tty netgraph/vjc \
83	netgraph7/UI netgraph7/async netgraph7/bpf \
84	netgraph7/bridge netgraph7/cisco netgraph7/deflate netgraph7/echo \
85	netgraph7/eiface netgraph7/etf netgraph7/ether \
86	netgraph7/frame_relay netgraph7/hole netgraph7/hub \
87	netgraph7/iface netgraph7/ksocket netgraph7/l2tp netgraph7/lmi \
88	netgraph7/mppc netgraph7/one2many netgraph7/ppp netgraph7/pppoe \
89	netgraph7/pptpgre netgraph7/rfc1490 netgraph7/socket \
90	netgraph7/tcpmss netgraph7/tee netgraph7/tty netgraph7/vjc \
91	netproto/802_11 netproto/mpls netproto/smb \
92	vfs/isofs/cd9660 \
93	vfs/msdosfs vfs/nfs vfs/ntfs \
94	vfs/smbfs vfs/udf vfs/ufs vfs/hammer vfs/hammer2 \
95	vfs/autofs vfs/fuse vfs/tmpfs
96
97# For SHARED=symlinks, adjust LSYMSUBDIRS to remove subdirectories whos
98# parent directory is also symlinked, avoiding the source tree being
99# overwritten.  For example, 'bus/cam' is a symlink, so 'bus/cam/scsi'
100# is also taken care of.
101LSYMSUBDIRS:=	${LSUBDIRS:Nnet/*:Nnetgraph/*:Nnetgraph7/*}
102LSYMSUBDIRS:=	${LSYMSUBDIRS:Nbus/cam/scsi}
103LSYMSUBDIRS:=	${LSYMSUBDIRS:Ndev/virtual/nvmm/x86}
104
105# Define SHARED to indicate whether you want symbolic links to the system
106# source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
107# probably only useful for developers and should be avoided if you do not
108# wish to tie your /usr/include and /usr/src together.
109#SHARED=	symlinks
110SHARED?=	copies
111
112INCS+=	osreldate.h
113
114osreldate.h:	${.CURDIR}/../sys/conf/newvers.sh \
115		${.CURDIR}/../sys/sys/param.h
116	@${ECHO} creating osreldate.h from newvers.sh
117	setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
118	. ${.CURDIR}/../sys/conf/newvers.sh "${.CURDIR}/.." ;	\
119	echo "$$COPYRIGHT" > osreldate.h;			\
120	echo "#ifdef _KERNEL" >> osreldate.h;			\
121	echo '#error "osreldate.h must not be used in the kernel, use sys/param.h"' >> osreldate.h; \
122	echo "#else" >> osreldate.h;				\
123	echo "#undef __DragonFly_version" >> osreldate.h;	\
124	echo "#define __DragonFly_version $$RELDATE" >> osreldate.h; \
125	echo "#endif" >> osreldate.h
126
127.for i in ${LHDRS}
128INCSLINKS+=	sys/$i ${INCLUDEDIR}/$i
129.endfor
130.for i in ${MHDRS}
131INCSLINKS+=	machine/$i ${INCLUDEDIR}/$i
132.endfor
133# For smbfs contrib.
134INCSLINKS+=	netproto/smb ${INCLUDEDIR}/netsmb
135# Some 3rd party software looks for <floatingpoint.h>
136INCSLINKS+=	ieeefp.h ${INCLUDEDIR}/floatingpoint.h
137
138# NOTE!
139#
140# machine/ header files come from the platform architecture and
141# cpu/ header files come from the cpu architecture.  All code outside
142# of the machine header files ALWAYS #include's <machine/blah.h>.  So
143# if the platform architecture is missing a header file we have to
144# copy it in from the cpu architecture.  This way we do not have to
145# create dozens of pure forwarding headers for files that platform
146# architecture does not need to enhance.
147
148mtree_setup:
149.for i in ${LDIRS} ${LSYMSUBDIRS} machine cpu crypto dev/acpica
150	if [ -h ${DESTDIR}/usr/include/$i ]; then \
151		rm -f ${DESTDIR}/usr/include/$i; \
152	fi
153.endfor
154	mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
155		-p ${DESTDIR}/usr/include
156
157copies:		mtree_setup
158.for i in ${LDIRS} ${LSUBDIRS}
159	cd ${.CURDIR}/../sys; \
160		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
161		${DESTDIR}/usr/include/$i
162.endfor
163	cd ${.CURDIR}/../sys; \
164		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 crypto/rijndael/rijndael.h \
165		${DESTDIR}/usr/include/crypto; \
166		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 opencrypto/*.h \
167		${DESTDIR}/usr/include/crypto
168	cd ${.CURDIR}/../sys/dev/acpica; \
169		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
170		${DESTDIR}/usr/include/dev/acpica
171	cd ${.CURDIR}/../sys/dev/misc/evdev; \
172		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 input.h \
173		${DESTDIR}/usr/include/dev/misc/evdev
174	cd ${.CURDIR}/../sys/dev/misc/evdev; \
175		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 input-event-codes.h \
176		${DESTDIR}/usr/include/dev/misc/evdev
177	cd ${.CURDIR}/../sys/dev/misc/evdev; \
178		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 input.h \
179		${DESTDIR}/usr/include/compat/linux
180	cd ${.CURDIR}/../sys/dev/misc/evdev; \
181		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 input-event-codes.h \
182		${DESTDIR}/usr/include/compat/linux
183	cd ${.CURDIR}/../sys/dev/drm/include/linux; \
184		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 compiler.h \
185		${DESTDIR}/usr/include/compat/linux
186	cd ${.CURDIR}/../sys/dev/drm/include/linux; \
187		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 posix_types.h \
188		${DESTDIR}/usr/include/compat/linux
189	cd ${.CURDIR}/../sys/dev/drm/include/linux; \
190		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 types.h \
191		${DESTDIR}/usr/include/compat/linux
192	cd ${.CURDIR}/../sys/dev/drm/include/uapi; \
193		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 asm-generic/int-ll64.h \
194		${DESTDIR}/usr/include/compat/uapi/asm-generic
195	cd ${.CURDIR}/../sys/dev/drm/include/uapi; \
196		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 linux/types.h \
197		${DESTDIR}/usr/include/compat/uapi/linux
198	cd ${.CURDIR}/../sys/dev/drm/include/asm; \
199		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 bitsperlong.h \
200		${DESTDIR}/usr/include/compat/asm
201	cd ${.CURDIR}/../sys/dev/drm/include/asm; \
202		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 int-ll64.h \
203		${DESTDIR}/usr/include/compat/asm
204	cd ${.CURDIR}/../sys/dev/drm/include/asm; \
205		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ioctl.h \
206		${DESTDIR}/usr/include/compat/asm
207.if exists(${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include)
208	cd ${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include; \
209		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
210		${DESTDIR}/usr/include/cpu
211	# XXX this will cause quickworld to rebuild more junk
212	# then it needs to.
213	cpdup -o ${DESTDIR}/usr/include/cpu ${DESTDIR}/usr/include/machine
214.endif
215.if exists(${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include)
216	cd ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include; \
217		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
218		${DESTDIR}/usr/include/machine
219.if exists(${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include/pc)
220	cd ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include/pc; \
221		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
222		${DESTDIR}/usr/include/machine/pc
223.endif
224.endif
225.for i in ${SHDRS}
226	${LN} -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
227.endfor
228
229symlinks:	mtree_setup
230	@${ECHO} "Setting up symlinks to kernel source tree..."
231.for i in ${LDIRS}
232	rm -rf ${DESTDIR}/usr/include/$i
233	${LN} -s ../../sys/$i ${DESTDIR}/usr/include/$i
234.endfor
235	rm -rf ${DESTDIR}/usr/include/crypto
236	${LN} -s ../../sys/opencrypto ${DESTDIR}/usr/include/crypto
237.for i in ${LSYMSUBDIRS}
238	rm -rf ${DESTDIR}/usr/include/$i
239	${LN} -s ${i:C;[^/]+/?;../;g}../sys/$i ${DESTDIR}/usr/include/$i
240.endfor
241	rm -rf ${DESTDIR}/usr/include/cpu
242	${LN} -s ../../sys/cpu/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/cpu
243	rm -rf ${DESTDIR}/usr/include/machine
244	cpdup ${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include \
245		${DESTDIR}/usr/include/machine
246	cpdup -o ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include \
247		${DESTDIR}/usr/include/machine
248
249.include <bsd.prog.mk>
250
251installincludes: ${SHARED}
252