File: Makefile

package info (click to toggle)
boxer-data 6
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,008 kB
  • ctags: 5
  • sloc: makefile: 21
file content (15 lines) | stat: -rw-r--r-- 366 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
nullstring =
space = $(nullstring) # <- notice the trailing space (only leading is stripped)

suitepairs = wheezy:jessie
suites = $(sort $(subst :,$(space),$(suitepairs)))

all: symlinkfarm

symlinkfarm:
	$(foreach pair,$(suitepairs),\
	shtool mkshadow $(subst :,$(space),$(pair)) 2>/dev/null;)

clean:
	find $(suites) -type l -delete
	find $(suites) -empty -delete