annotate Makefile @ 1:36fc0a87d7fb draft default tip

planemo upload
author lecorguille
date Fri, 13 Nov 2015 08:43:11 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
1 # USAGE: make [install|clean]
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
2
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
3 # -------- VARIABLE --------
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
4
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
5 OBJ=hclustering.tgz
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
6 DEP=abims_hclustering.r abims_hclustering.xml static
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
7
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
8
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
9 # ------------------------
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
10
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
11 all: $(OBJ)
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
12
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
13 $(OBJ): $(DEP)
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
14 tar --exclude=".svn" -zchf $@ $^
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
15
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
16 # ------------------------
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
17
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
18 install: $(OBJ)
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
19 mv *.tgz ~
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
20
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
21 clean:
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
22 rm *.tgz
36fc0a87d7fb planemo upload
lecorguille
parents:
diff changeset
23