Makefile revision 34030
1#	From: @(#)Makefile	8.2 (Berkeley) 1/4/94
2#	$Id: Makefile,v 1.72 1998/02/13 03:10:26 bde 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 posix4.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	@${ECHO} creating osreldate.h from newvers.sh
63	. ${.CURDIR}/../sys/conf/newvers.sh;			\
64	echo "$$COPYRIGHT" > osreldate.h;			\
65	echo \#'undef __FreeBSD_version' >> osreldate.h;	\
66	echo \#'define __FreeBSD_version' $$RELDATE >> osreldate.h
67.else
68all:
69	@${ECHO} creating osreldate.h from sysctl info
70	echo \#'undef __FreeBSD_version' > osreldate.h
71	echo \#'define __FreeBSD_version '`sysctl -n kern.osreldate` \
72		>> osreldate.h
73.endif
74
75beforeinstall: ${SHARED}
76	cd ${.CURDIR}; \
77		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
78		${FILES} ${DESTDIR}/usr/include
79	cd ${.CURDIR}/arpa; \
80		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
81		${ARPAFILES} ${DESTDIR}/usr/include/arpa
82	cd ${.CURDIR}/protocols; \
83		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
84		${PROTOFILES} ${DESTDIR}/usr/include/protocols
85	cd ${.CURDIR}/rpc; \
86		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
87		${RPCFILES} ${DESTDIR}/usr/include/rpc
88	${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 \
89		${.OBJDIR}/osreldate.h \
90		${DESTDIR}/usr/include
91.for i in ${LFILES}
92	ln -sf sys/$i ${DESTDIR}/usr/include/$i
93.endfor
94.for i in ${MFILES}
95	ln -sf machine/$i ${DESTDIR}/usr/include/$i
96.endfor
97.for i in ${PFILES}
98	ln -sf posix4/$i ${DESTDIR}/usr/include/$i
99.endfor
100
101
102copies:
103.for i in ${LDIRS} ${LNOHEADERDIRS} machine
104	if [ -h ${DESTDIR}/usr/include/$i ]; then \
105		rm -f ${DESTDIR}/usr/include/$i; \
106	fi
107.endfor
108	mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.include.dist \
109		-p ${DESTDIR}/usr/include
110.for i in ${LDIRS} ${LSUBDIRS}
111	cd ${.CURDIR}/../sys; \
112		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 $i/*.h \
113		${DESTDIR}/usr/include/$i
114.endfor
115.if exists(${.CURDIR}/../sys/${MACHINE}/include)
116	cd ${.CURDIR}/../sys/${MACHINE}/include; \
117		${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 *.h \
118		${DESTDIR}/usr/include/machine
119.endif
120
121symlinks:
122	@${ECHO} "Setting up symlinks to kernel source tree..."
123.for i in ${LDIRS} ${LNOHEADERDIRS}
124	rm -rf ${DESTDIR}/usr/include/$i
125	ln -s ../../sys/$i ${DESTDIR}/usr/include/$i
126.endfor
127	rm -rf ${DESTDIR}/usr/include/machine
128	ln -s ../../sys/${MACHINE}/include ${DESTDIR}/usr/include/machine
129
130.include <bsd.prog.mk>
131