comparison galaxy/stat_anova/Makefile @ 8:c2be3b890724 draft

planemo upload commit 00a7f9aadf30a7d728eb4df72ca38ebe5dd7be03
author lecorguille
date Tue, 06 Jun 2017 09:43:23 -0400
parents b6298c38e53f
children
comparison
equal deleted inserted replaced
7:bcd05315efc5 8:c2be3b890724
1 # USAGE: make [install|clean]
2
3 # -------- VARIABLE --------
4
5 OBJ=anova.tgz
6 DEP=abims_anova.r abims_anova.xml static test-data
7
8
9 # ------------------------
10
11 all: $(OBJ)
12
13 $(OBJ): $(DEP)
14 tar --exclude=".svn" -zchf $@ $^
15
16 # ------------------------
17
18 install: $(OBJ)
19 mv *.tgz ~
20
21 clean:
22 rm *.tgz
23