summaryrefslogtreecommitdiffstats
path: root/scripts/zpool-layout/Makefile.am
blob: 3eef2412db0f370dcc951c5fb473dc98d9bfb665 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pkglibexecdir = $(libexecdir)/@PACKAGE@/zpool-layout
dist_pkglibexec_SCRIPTS = \
	$(top_srcdir)/scripts/zpool-layout/dragon.ddn.conf \
	$(top_srcdir)/scripts/zpool-layout/dragon.llnl.conf

all:
	@list='$(dist_pkglibexec_SCRIPTS)'; \
	for file in $$list; do \
		link=$$(basename $$file); \
		if [ ! -e $$link ]; then \
			$(LN_S) $$file $$link; \
		fi \
	done

clean:
	@list='$(dist_pkglibexec_SCRIPTS)'; \
	for file in $$list; do \
		link=$$(basename $$file); \
		if [ -L $$link ]; then \
			$(RM) $$link; \
		fi \
	done