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