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