Merge branch 'vendor/TCPDUMP'
[dragonfly.git] / include / Makefile
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
9 CLEANFILES= osreldate.h version vers.c vers.txt
10 SUBDIR= arpa protocols rpc rpcsvc
11 INCS=   a.out.h ar.h assert.h bitstring.h complex.h cpio.h ctype.h db.h \
12         dirent.h disktab.h \
13         dlfcn.h elf.h elf-hints.h err.h fmtmsg.h fnmatch.h fstab.h \
14         fts.h ftw.h getopt.h glob.h grp.h histedit.h \
15         iconv.h ieeefp.h ifaddrs.h iso646.h inttypes.h \
16         langinfo.h libgen.h limits.h link.h locale.h malloc.h math.h memory.h \
17         mpool.h mqueue.h monetary.h ndbm.h netconfig.h \
18         netdb.h nl_types.h nlist.h nss.h nsswitch.h objformat.h \
19         paths.h printf.h pthread.h pthread_np.h pwd.h \
20         ranlib.h readpassphrase.h regex.h regexp.h \
21         res_update.h resolv.h re_comp.h rmd160.h \
22         search.h setjmp.h sgtty.h \
23         signal.h spawn.h stab.h stdarg.h stdbool.h \
24         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 tzfile.h unistd.h ulimit.h utime.h utmp.h utmpx.h \
28         uuid.h vis.h \
29         wchar.h wctype.h wordexp.h
30
31 .if defined(WANT_HESIOD)
32 INCS+=  hesiod.h
33 .endif
34
35 MHDRS=  float.h floatingpoint.h varargs.h
36
37 # Only for default SHARED=copies case
38 SHDRS=  soundcard.h joystick.h
39
40 LHDRS=  aio.h errno.h fcntl.h linker_set.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.
47 LDIRS=  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.  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 #
55 LSUBDIRS=       bus/cam bus/cam/scsi \
56         emulation/linux \
57         gnu/vfs/ext2fs \
58         vfs/msdosfs vfs/nfs vfs/ntfs vfs/nwfs \
59         vfs/smbfs vfs/udf vfs/ufs vfs/hammer \
60         net/vlan net/ipfw net/ip6fw net/dummynet net/sppp net/ip_mroute \
61         net/bridge net/tap net/tun net/ppp net/ppp_layer net/sl \
62         net/pf net/altq \
63         netgraph/UI netgraph/async netgraph/bpf netgraph/bridge \
64         netgraph/cisco netgraph/echo netgraph/eiface netgraph/etf \
65         netgraph/ether netgraph/fec netgraph/frame_relay netgraph/hole \
66         netgraph/iface netgraph/ksocket netgraph/l2tp netgraph/lmi \
67         netgraph/mppc netgraph/one2many netgraph/ppp \
68         netgraph/pppoe netgraph/pptpgre netgraph/rfc1490 netgraph/socket \
69         netgraph/tee netgraph/tty netgraph/vjc \
70         netgraph7/UI netgraph7/async netgraph7/atmllc netgraph7/bpf \
71         netgraph7/bridge netgraph7/cisco netgraph7/deflate netgraph7/echo \
72         netgraph7/etf netgraph7/ether netgraph7/frame_relay netgraph7/hole \
73         netgraph7/hub \
74         netgraph7/iface netgraph7/ksocket netgraph7/l2tp netgraph7/lmi \
75         netgraph7/mppc netgraph7/one2many netgraph7/ppp netgraph7/pppoe \
76         netgraph7/pptpgre netgraph7/rfc1490 netgraph7/socket \
77         netgraph7/tcpmss netgraph7/tee netgraph7/vjc \
78         bus/cam bus/usb bus/pccard bus/pci bus/isa bus/ppbus bus/smbus \
79         netproto/atm netproto/ipsec netproto/ipx \
80         netproto/key netproto/natm netproto/ncp netproto/smb \
81         netproto/atm/ipatm netproto/atm/sigpvc netproto/atm/spans \
82         netproto/atm/uni netproto/802_11 netproto/mpls \
83         vfs/isofs/cd9660 net/i4b/include \
84         dev/disk/mpt/mpilib \
85         dev/disk/dm \
86         dev/misc/lpt dev/misc/ppi \
87         dev/netif/wi \
88         dev/raid/ciss dev/raid/mfi \
89         dev/video/bktr dev/video/meteor libprop
90
91 # For SHARED=symlinks, bus/cam and netproto/atm are symlinks, so cam/scsi
92 # and netproto/atm/* are taken care of
93 LSYMSUBDIRS=    ${LSUBDIRS:Nbus/cam/scsi:Nnetproto/atm/*:Nnet/*:Nnetgraph/*:Nnetgraph7/*}
94
95 # For obsolete headers which need to be removed
96 RMHEADERS=      machine/ansi.h sys/inttypes.h
97
98 # Define SHARED to indicate whether you want symbolic links to the system
99 # source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
100 # probably only useful for developers and should be avoided if you do not
101 # wish to tie your /usr/include and /usr/src together.
102 #SHARED=        symlinks
103 SHARED?=        copies
104
105 INCS+=  osreldate.h
106
107 osreldate.h:    ${.CURDIR}/../sys/conf/newvers.sh \
108                 ${.CURDIR}/../sys/sys/param.h
109         @${ECHO} creating osreldate.h from newvers.sh
110         setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
111         . ${.CURDIR}/../sys/conf/newvers.sh;                    \
112         echo "$$COPYRIGHT" > osreldate.h;                       \
113         echo "#ifdef _KERNEL" >> osreldate.h;                   \
114         echo '#error "osreldate.h must not be used in the kernel, use sys/param.h"' >> osreldate.h; \
115         echo "#else" >> osreldate.h;                            \
116         echo "#undef __DragonFly_version" >> osreldate.h;       \
117         echo "#define __DragonFly_version $$RELDATE" >> osreldate.h; \
118         echo "#endif" >> osreldate.h
119
120 .for i in ${LHDRS}
121 INCSLINKS+=     sys/$i ${INCLUDEDIR}/$i
122 .endfor
123 .for i in ${MHDRS}
124 INCSLINKS+=     machine/$i ${INCLUDEDIR}/$i
125 .endfor
126 INCSLINKS+=     bus/cam ${INCLUDEDIR}/cam
127 INCSLINKS+=     vfs/msdosfs ${INCLUDEDIR}/msdosfs
128 INCSLINKS+=     vfs/isofs ${INCLUDEDIR}/isofs
129 INCSLINKS+=     vfs/mfs ${INCLUDEDIR}/mfs
130 INCSLINKS+=     vfs/nfs ${INCLUDEDIR}/nfs
131 INCSLINKS+=     vfs/ntfs ${INCLUDEDIR}/ntfs
132 INCSLINKS+=     vfs/nwfs ${INCLUDEDIR}/nwfs
133 INCSLINKS+=     vfs ${INCLUDEDIR}/fs
134 # this is for <ufs/ufs/...> and <ufs/ffs/...> paths used by ports
135 # It is hopefully a temporary hack until we have environments working.
136 INCSLINKS+=     vfs ${INCLUDEDIR}/ufs
137 INCSLINKS+=     ufs ${INCLUDEDIR}/vfs/ffs
138 INCSLINKS+=     emulation ${INCLUDEDIR}/compat
139 INCSLINKS+=     netproto/atm ${INCLUDEDIR}/netatm
140 INCSLINKS+=     netproto/ipsec ${INCLUDEDIR}/netipsec
141 INCSLINKS+=     netproto/ipx ${INCLUDEDIR}/netipx
142 INCSLINKS+=     netproto/key ${INCLUDEDIR}/netkey
143 INCSLINKS+=     netproto/natm ${INCLUDEDIR}/netnatm
144 INCSLINKS+=     netproto/ncp ${INCLUDEDIR}/netncp
145 INCSLINKS+=     netproto/smb ${INCLUDEDIR}/netsmb
146 INCSLINKS+=     bus/pccard ${INCLUDEDIR}/pccard
147
148 # NOTE!
149 #
150 # machine/ header files come from the platform architecture and
151 # cpu/ header files come from the cpu architecture.  All code outside
152 # of the machine header files ALWAYS #include's <machine/blah.h>.  So
153 # if the platform architecture is missing a header file we have to 
154 # copy it in from the cpu architecture.  This way we do not have to
155 # create dozens of pure forwarding headers for files that platform
156 # architecture does not need to enhance.
157
158 mtree_setup:
159 .for i in ${LDIRS} ${LSYMSUBDIRS} machine cpu crypto dev/acpica
160         if [ -h ${DESTDIR}/usr/include/$i ]; then \
161                 rm -f ${DESTDIR}/usr/include/$i; \
162         fi
163 .endfor
164         mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
165                 -p ${DESTDIR}/usr/include
166
167 copies:         mtree_setup
168 .for i in ${LDIRS} ${LSUBDIRS}
169         cd ${.CURDIR}/../sys; \
170                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
171                 ${DESTDIR}/usr/include/$i
172 .endfor
173         cd ${.CURDIR}/../sys; \
174                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 crypto/rijndael/rijndael.h \
175                 ${DESTDIR}/usr/include/crypto; \
176                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 opencrypto/*.h \
177                 ${DESTDIR}/usr/include/crypto
178         cd ${.CURDIR}/../sys/dev/acpica5; \
179                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 acpiio.h \
180                 ${DESTDIR}/usr/include/dev/acpica
181 .if exists(${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include)
182         cd ${.CURDIR}/../sys/cpu/${MACHINE_ARCH}/include; \
183                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
184                 ${DESTDIR}/usr/include/cpu
185         # XXX this will cause quickworld to rebuild more junk
186         # then it needs to.
187         cpdup -o ${DESTDIR}/usr/include/cpu ${DESTDIR}/usr/include/machine
188 .endif
189 .if exists(${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include)
190         cd ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include; \
191                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
192                 ${DESTDIR}/usr/include/machine
193 .if exists(${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include/pc)
194         cd ${.CURDIR}/../sys/platform/${MACHINE_PLATFORM}/include/pc; \
195                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
196                 ${DESTDIR}/usr/include/machine/pc
197 .endif
198 .endif
199 .if exists(${.CURDIR}/../sys/net/i4b/include/${MACHINE_ARCH})
200         cd ${.CURDIR}/../sys/net/i4b/include/${MACHINE_ARCH}; \
201                 ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
202                 ${DESTDIR}/usr/include/i4b_machine
203 .endif
204 .for i in ${SHDRS}
205         ${LN} -sf ../sys/$i ${DESTDIR}/usr/include/machine/$i
206 .endfor
207 .for i in ${RMHEADERS}
208         rm -f ${DESTDIR}/usr/include/$i
209 .endfor
210
211 symlinks:       mtree_setup
212         @${ECHO} "Setting up symlinks to kernel source tree..."
213 .for i in ${LDIRS}
214         rm -rf ${DESTDIR}/usr/include/$i
215         ${LN} -s ../../sys/$i ${DESTDIR}/usr/include/$i
216 .endfor
217         rm -rf ${DESTDIR}/usr/include/crypto
218         ${LN} -s ../../sys/opencrypto ${DESTDIR}/usr/include/crypto
219 .for i in ${LSYMSUBDIRS}
220         rm -rf ${DESTDIR}/usr/include/$i
221         ${LN} -s ${i:C;[^/]+/?;../;g}../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
235 installincludes: ${SHARED}