Deleted Added
full compact
Makefile (277725) Makefile (277727)
1# $FreeBSD: head/share/examples/Makefile 277725 2015-01-26 06:27:07Z ngie $
1# $FreeBSD: head/share/examples/Makefile 277727 2015-01-26 06:44:48Z ngie $
2#
3# Doing a make install builds /usr/share/examples
4
5.include <src.opts.mk>
6
7LDIRS= BSD_daemon \
8 FreeBSD_version \
9 IPv6 \
2#
3# Doing a make install builds /usr/share/examples
4
5.include <src.opts.mk>
6
7LDIRS= BSD_daemon \
8 FreeBSD_version \
9 IPv6 \
10 bhyve \
11 bootforth \
12 csh \
13 diskless \
14 drivers \
15 etc \
16 find_interface \
17 ibcs2 \
18 indent \

--- 17 unchanged lines hidden (view full) ---

36 BSD_daemon/beastie.eps \
37 BSD_daemon/beastie.fig \
38 BSD_daemon/eps.patch \
39 BSD_daemon/poster.sh \
40 FreeBSD_version/FreeBSD_version.c \
41 FreeBSD_version/Makefile \
42 FreeBSD_version/README \
43 IPv6/USAGE \
10 bootforth \
11 csh \
12 diskless \
13 drivers \
14 etc \
15 find_interface \
16 ibcs2 \
17 indent \

--- 17 unchanged lines hidden (view full) ---

35 BSD_daemon/beastie.eps \
36 BSD_daemon/beastie.fig \
37 BSD_daemon/eps.patch \
38 BSD_daemon/poster.sh \
39 FreeBSD_version/FreeBSD_version.c \
40 FreeBSD_version/Makefile \
41 FreeBSD_version/README \
42 IPv6/USAGE \
44 bhyve/vmrun.sh \
45 bootforth/README \
46 bootforth/boot.4th \
47 bootforth/frames.4th \
48 bootforth/loader.rc \
49 bootforth/menu.4th \
50 bootforth/menuconf.4th \
51 bootforth/screen.4th \
52 csh/dot.cshrc \

--- 147 unchanged lines hidden (view full) ---

200LDIRS+= hast
201XFILES+= hast/ucarp.sh \
202 hast/ucarp_down.sh \
203 hast/ucarp_up.sh \
204 hast/vip-down.sh \
205 hast/vip-up.sh
206.endif
207
43 bootforth/README \
44 bootforth/boot.4th \
45 bootforth/frames.4th \
46 bootforth/loader.rc \
47 bootforth/menu.4th \
48 bootforth/menuconf.4th \
49 bootforth/screen.4th \
50 csh/dot.cshrc \

--- 147 unchanged lines hidden (view full) ---

198LDIRS+= hast
199XFILES+= hast/ucarp.sh \
200 hast/ucarp_down.sh \
201 hast/ucarp_up.sh \
202 hast/vip-down.sh \
203 hast/vip-up.sh
204.endif
205
206.if ${MACHINE_CPUARCH} == "amd64"
207.if ${MK_BHYVE} != "no"
208LDIRS+= bhyve
209XFILES+= bhyve/vmrun.sh
210.endif
211.endif
212
208# Define SHARED to indicate whether you want symbolic links to the system
209# source (``symlinks''), or a separate copy (``copies''); (latter useful
210# in environments where it's not possible to keep /sys publicly readable)
211SHARED?= copies
212
213beforeinstall: ${SHARED} etc-examples
214.ORDER: ${SHARED} etc-examples
215

--- 42 unchanged lines hidden ---
213# Define SHARED to indicate whether you want symbolic links to the system
214# source (``symlinks''), or a separate copy (``copies''); (latter useful
215# in environments where it's not possible to keep /sys publicly readable)
216SHARED?= copies
217
218beforeinstall: ${SHARED} etc-examples
219.ORDER: ${SHARED} etc-examples
220

--- 42 unchanged lines hidden ---