Catch up with renaming of macros IRQn -> ICU_IRQn in i386/icu/icu.h,1.7
[dragonfly.git] / include / Makefile
blobd7bffd2598190a59891209cd8a4b7c3991e864f5
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.26 2005/07/26 21:15:19 joerg Exp $
5 # Doing a make install builds /usr/include
7 # The ``rm -rf''s used below are safe because rm doesn't follow symbolic
8 # links.
10 CLEANFILES= osreldate.h version vers.c
11 SUBDIR= arpa protocols rpc rpcsvc
12 INCS= 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
27 MHDRS= float.h floatingpoint.h varargs.h
29 # posix4/aio.h conflicts with dysons and isn't installed:
30 PHDRS= mqueue.h sched.h semaphore.h # aio.h
32 # Only for default SHARED=copies case
33 SHDRS= soundcard.h joystick.h
35 LHDRS= aio.h errno.h fcntl.h linker_set.h poll.h syslog.h \
36 termios.h ucontext.h
38 # directories which also contain header files that need to be copied.
39 # Other directories, like 'bus' and 'netproto', are created using mtree.
41 # XXX allow these directories to not contain header files.
42 LDIRS= net netgraph netinet netinet6 sys vm
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.
50 LSUBDIRS= 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/tun net/ppp net/ppp_layer net/sl net/pf net/altq \
57 netgraph/UI netgraph/async netgraph/bpf netgraph/bridge \
58 netgraph/cisco netgraph/echo netgraph/eiface netgraph/etf \
59 netgraph/ether netgraph/fec netgraph/frame_relay netgraph/hole \
60 netgraph/iface netgraph/ksocket netgraph/l2tp netgraph/lmi \
61 netgraph/mppc netgraph/one2many netgraph/ppp \
62 netgraph/pppoe netgraph/pptpgre netgraph/rfc1490 netgraph/socket \
63 netgraph/tee netgraph/tty netgraph/vjc \
64 bus/cam bus/usb bus/pccard bus/pci bus/isa \
65 netproto/atalk netproto/atm netproto/ipsec netproto/ipx \
66 netproto/key netproto/natm netproto/ncp netproto/ns netproto/smb \
67 netproto/atm/ipatm netproto/atm/sigpvc netproto/atm/spans \
68 netproto/atm/uni netproto/802_11
70 LSUBDIRS3= vfs/isofs/cd9660 net/i4b/include \
71 dev/misc/lpt dev/netif/wi dev/video/bktr dev/video/meteor
73 # For SHARED=symlinks, bus/cam and netproto/atm are symlinks, so cam/scsi
74 # and netproto/atm/* are taken care of
75 LSYMSUBDIRS= ${LSUBDIRS:Nbus/cam/scsi:Nnetproto/atm/*:Nnet/*:Nnetgraph/*}
76 LSYMSUBDIRS3= ${LSUBDIRS3:Nnet/*}
78 # For obsolete headers which need to be removed
79 RMHEADERS= machine/ansi.h sys/inttypes.h
81 # Define SHARED to indicate whether you want symbolic links to the system
82 # source (``symlinks''), or a separate copy (``copies''). ``symlinks'' is
83 # probably only useful for developers and should be avoided if you do not
84 # wish to tie your /usr/include and /usr/src together.
85 #SHARED= symlinks
86 SHARED?= copies
88 INCS+= osreldate.h
90 osreldate.h: ${.CURDIR}/../sys/conf/newvers.sh \
91 ${.CURDIR}/../sys/sys/param.h
92 @${ECHO} creating osreldate.h from newvers.sh
93 setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
94 . ${.CURDIR}/../sys/conf/newvers.sh; \
95 echo "$$COPYRIGHT" > osreldate.h; \
96 echo "#ifdef _KERNEL" >> osreldate.h; \
97 echo '#error "osreldate.h must not be used in the kernel, use sys/param.h"' >> osreldate.h; \
98 echo "#else" >> osreldate.h; \
99 echo "#undef __DragonFly_version" >> osreldate.h; \
100 echo "#define __DragonFly_version $$RELDATE" >> osreldate.h; \
101 echo "#ifdef __FreeBSD__" >> osreldate.h; \
102 echo "#undef __FreeBSD_version" >> osreldate.h; \
103 echo "#define __FreeBSD_version 480101" >> osreldate.h; \
104 echo "#endif" >> osreldate.h; \
105 echo "#endif" >> osreldate.h
107 .for i in ${LHDRS}
108 INCSLINKS+= sys/$i ${INCLUDEDIR}/$i
109 .endfor
110 .for i in ${MHDRS}
111 INCSLINKS+= machine/$i ${INCLUDEDIR}/$i
112 .endfor
113 .for i in ${PHDRS}
114 INCSLINKS+= emulation/posix4/$i ${INCLUDEDIR}/$i
115 .endfor
116 INCSLINKS+= bus/cam ${INCLUDEDIR}/cam
117 INCSLINKS+= vfs/msdosfs ${INCLUDEDIR}/msdosfs
118 INCSLINKS+= vfs/isofs ${INCLUDEDIR}/isofs
119 INCSLINKS+= vfs/mfs ${INCLUDEDIR}/mfs
120 INCSLINKS+= vfs/nfs ${INCLUDEDIR}/nfs
121 INCSLINKS+= vfs/ntfs ${INCLUDEDIR}/ntfs
122 INCSLINKS+= vfs/nwfs ${INCLUDEDIR}/nwfs
123 INCSLINKS+= vfs ${INCLUDEDIR}/fs
124 # this is for <ufs/ufs/...> and <ufs/ffs/...> paths used by ports
125 # It is hopefully a temporary hack until we have environments working.
126 INCSLINKS+= vfs ${INCLUDEDIR}/ufs
127 INCSLINKS+= ufs ${INCLUDEDIR}/vfs/ffs
128 INCSLINKS+= emulation ${INCLUDEDIR}/compat
129 INCSLINKS+= netproto/atalk ${INCLUDEDIR}/netatalk
130 INCSLINKS+= netproto/atm ${INCLUDEDIR}/netatm
131 INCSLINKS+= netproto/ipsec ${INCLUDEDIR}/netipsec
132 INCSLINKS+= netproto/ipx ${INCLUDEDIR}/netipx
133 INCSLINKS+= netproto/key ${INCLUDEDIR}/netkey
134 INCSLINKS+= netproto/natm ${INCLUDEDIR}/netnatm
135 INCSLINKS+= netproto/ncp ${INCLUDEDIR}/netncp
136 INCSLINKS+= netproto/ns ${INCLUDEDIR}/netns
137 INCSLINKS+= netproto/smb ${INCLUDEDIR}/netsmb
138 INCSLINKS+= bus/pccard ${INCLUDEDIR}/pccard
139 # warning, we cannot softlink through ${INCLUDEDIR}/machine/... because
140 # machine itself is a softlink into the source tree in buildworld's
141 # temporary include hierarchy.
143 mtree_setup:
144 .for i in ${LDIRS} ${LSYMSUBDIRS} ${LSYMSUBDIRS3} machine crypto
145 if [ -h ${DESTDIR}/usr/include/$i ]; then \
146 rm -f ${DESTDIR}/usr/include/$i; \
148 .endfor
149 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
150 -p ${DESTDIR}/usr/include
152 copies: mtree_setup
153 .for i in ${LDIRS} ${LSUBDIRS} ${LSUBDIRS3}
154 cd ${.CURDIR}/../sys; \
155 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
156 ${DESTDIR}/usr/include/$i
157 .endfor
158 cd ${.CURDIR}/../sys; \
159 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 opencrypto/*.h \
160 ${DESTDIR}/usr/include/crypto
161 .if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include)
162 cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \
163 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
164 ${DESTDIR}/usr/include/machine
165 .if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc)
166 cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include/pc; \
167 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
168 ${DESTDIR}/usr/include/machine/pc
169 .endif
170 .endif
171 .if exists(${.CURDIR}/../sys/net/i4b/include/${MACHINE_ARCH})
172 cd ${.CURDIR}/../sys/net/i4b/include/${MACHINE_ARCH}; \
173 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
174 ${DESTDIR}/usr/include/i4b_machine
175 .endif
176 .for i in ${SHDRS}
177 ${LN} -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
178 .endfor
179 .for i in ${RMHEADERS}
180 rm -f ${DESTDIR}/usr/include/$i
181 .endfor
183 symlinks: mtree_setup
184 @${ECHO} "Setting up symlinks to kernel source tree..."
185 .for i in ${LDIRS}
186 rm -rf ${DESTDIR}/usr/include/$i
187 ${LN} -s ../../sys/$i ${DESTDIR}/usr/include/$i
188 .endfor
189 rm -rf ${DESTDIR}/usr/include/crypto
190 ${LN} -s ../../sys/opencrypto ${DESTDIR}/usr/include/crypto
191 .for i in ${LSYMSUBDIRS}
192 rm -rf ${DESTDIR}/usr/include/$i
193 ${LN} -s ../../../sys/$i ${DESTDIR}/usr/include/$i
194 .endfor
195 .for i in ${LSYMSUBDIRS3}
196 rm -rf ${DESTDIR}/usr/include/$i
197 ${LN} -s ../../../../sys/$i ${DESTDIR}/usr/include/$i
198 .endfor
199 rm -rf ${DESTDIR}/usr/include/machine
200 ${LN} -s ../../sys/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/machine
201 rm -rf ${DESTDIR}/usr/include/i4b_machine
202 ${LN} -s ../../sys/net/i4b/include/${MACHINE_ARCH} ${DESTDIR}/usr/include/i4b_machine
204 .include <bsd.prog.mk>
206 installincludes: ${SHARED}