summaryrefslogtreecommitdiffstats
path: root/share/examples/Makefile
blob: 180a592ac56b691fca3a1a5118bab91d613f019c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#	$Id: Makefile,v 1.13 1995/03/30 00:05:58 ache Exp $
#
# Doing a make install builds /usr/share/examples

DIRS=etc FreeBSD_version ibcs2 lkm sunrpc

DDIR=${DESTDIR}/usr/share/examples

NOOBJ=	noobj

# Define SHARED to indicate whether you want symbolic links to the system
# source (``symlinks''), or a separate copy (``copies''); (latter useful
# in environments where it's not possible to keep /sys publicly readable)
SHARED?=	copies

all clean cleandir depend lint tags:

beforeinstall: ${SHARED}

copies:
	@${ECHO} installing ${DDIR}
	@-for a in ${DIRS}; do \
		rm -rf ${DDIR}/$$a; \
	done
	find ${DIRS} \( -name CVS -prune \) -o -print | cpio -dumpv ${DDIR}

symlinks:
	@${ECHO} installing symlinks in ${DDIR}
	@-for a in ${DIRS}; do \
		rm -rf ${DDIR}/$$a; \
		ln -s ${.CURDIR}/$$a ${DDIR}; \
	done

.include <bsd.prog.mk>
OpenPOWER on IntegriCloud