aboutsummaryrefslogtreecommitdiff
path: root/profiles/build.mk
blob: 9aff102de09a75d1552e140e8461cbe0e373bbbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

# Macros #######################################################################

define profile
unpack: profile-$1

.PHONY: profile-$1
profile-$1: | $(path)/$1

$(path)/$1: $(path)/$1.tar
	tar -C $(path) -xvf $$<

clean::
	$(RM) -r $(path)/$1
endef


# Profile Management ###########################################################

$(eval $(call profile,chrome))
$(eval $(call profile,firefox))