Makefile revision 44937
1#	@(#)Makefile	8.2 (Berkeley) 1/4/94
2#	$Id: Makefile,v 1.93 1999/03/11 15:12:28 phk 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
10SUBDIR= rpcsvc
11FILES=	a.out.h ar.h assert.h bitstring.h ctype.h db.h dirent.h disktab.h \
12	dlfcn.h elf.h err.h fnmatch.h fstab.h \
13	fts.h glob.h grp.h strhash.h histedit.h ieeefp.h iso646.h \
14	kvm.h limits.h link.h locale.h malloc.h memory.h mpool.h \
15	ndbm.h netdb.h nl_types.h nlist.h objformat.h \
16	paths.h pthread.h pthread_np.h pwd.h \
17	ranlib.h regex.h regexp.h resolv.h rune.h runetype.h setjmp.h sgtty.h \
18	signal.h stab.h stddef.h stdio.h stdlib.h string.h stringlist.h \
19	strings.h struct.h sysexits.h tar.h time.h timers.h \
20	ttyent.h unistd.h utime.h utmp.h vis.h
21.if defined(WANT_CSRG_LIBM)
22FILES+=	math.h
23.endif
24
25ARPAFILES=	ftp.h inet.h nameser.h nameser_compat.h telnet.h tftp.h
26
27PROTOFILES=	dumprestore.h routed.h rwhod.h talkd.h timed.h
28
29RPCFILES=	auth.h auth_unix.h clnt.h pmap_clnt.h pmap_prot.h pmap_rmt.h \
30		rpc.h rpc_com.h rpc_msg.h svc.h svc_auth.h types.h xdr.h \
31		auth_des.h des.h des_crypt.h
32
33MFILES=	float.h floatingpoint.h stdarg.h varargs.h
34
35# posix4/aio.h conflicts with dysons and isn't installed:
36PFILES=	mqueue.h sched.h semaphore.h \
37		# aio.h
38
39LFILES=	aio.h errno.h fcntl.h inttypes.h linker_set.h poll.h syslog.h termios.h
40
41LDIRS=	cam msdosfs net netatalk netatm netinet netipx netkey netns nfs \
42	pccard posix4 sys vm
43
44LNOHEADERDIRS=	isofs ufs
45LSUBDIRS=	isofs/cd9660 ufs/ffs ufs/mfs ufs/ufs cam/scsi
46
47# Define SHARED to indicate whether you want symbolic links to the system
48# source (``symlinks''), or a separate copy (``copies'').  ``symlinks'' is
49# probably only useful for developers and should be avoided if you do not
50# wish to tie your /usr/include and /usr/src together.
51#SHARED=	symlinks
52SHARED?=	copies
53
54all:	osreldate.h
55
56osreldate.h:	${.CURDIR}/../sys/conf/newvers.sh \
57		${.CURDIR}/../sys/sys/param.h
58	@${ECHO} creating osreldate.h from newvers.sh
59	setvar PARAMFILE ${.CURDIR}/../sys/sys/param.h; \
60	. ${.CURDIR}/../sys/conf/newvers.sh;			\
61	echo "$$COPYRIGHT" > osreldate.h;			\
62	echo \#'undef __FreeBSD_version' >> osreldate.h;	\
63	echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h
64
65beforeinstall: ${SHARED}
66	@rm -f ${DESTDIR}/usr/include/timepps.h
67	cd ${.CURDIR}; \
68		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
69		${FILES} ${DESTDIR}/usr/include
70	cd ${.CURDIR}/arpa; \
71		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
72		${ARPAFILES} ${DESTDIR}/usr/include/arpa
73	cd ${.CURDIR}/protocols; \
74		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
75		${PROTOFILES} ${DESTDIR}/usr/include/protocols
76	cd ${.CURDIR}/rpc; \
77		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
78		${RPCFILES} ${DESTDIR}/usr/include/rpc
79	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
80		${.OBJDIR}/osreldate.h \
81		${DESTDIR}/usr/include
82.for i in ${LFILES}
83	ln -sf sys/$i ${DESTDIR}/usr/include/$i
84.endfor
85.for i in ${MFILES}
86	ln -sf machine/$i ${DESTDIR}/usr/include/$i
87.endfor
88.for i in ${PFILES}
89	ln -sf posix4/$i ${DESTDIR}/usr/include/$i
90.endfor
91
92copies:
93.for i in ${LDIRS} ${LNOHEADERDIRS} machine
94	if [ -h ${DESTDIR}/usr/include/$i ]; then \
95		rm -f ${DESTDIR}/usr/include/$i; \
96	fi
97.endfor
98	mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
99		-p ${DESTDIR}/usr/include
100.for i in ${LDIRS} ${LSUBDIRS}
101	cd ${.CURDIR}/../sys; \
102		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
103		${DESTDIR}/usr/include/$i
104.endfor
105.if exists(${.CURDIR}/../sys/${MACHINE_ARCH}/include)
106	cd ${.CURDIR}/../sys/${MACHINE_ARCH}/include; \
107		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
108		${DESTDIR}/usr/include/machine
109.endif
110
111symlinks:
112	@${ECHO} "Setting up symlinks to kernel source tree..."
113.for i in ${LDIRS} ${LNOHEADERDIRS}
114	rm -rf ${DESTDIR}/usr/include/$i
115	ln -s ../../sys/$i ${DESTDIR}/usr/include/$i
116.endfor
117	rm -rf ${DESTDIR}/usr/include/machine
118	ln -s ../../sys/${MACHINE_ARCH}/include ${DESTDIR}/usr/include/machine
119
120.include <bsd.prog.mk>
121