annotate Makefile @ 4:fef3d1b8e7f4 draft

planemo upload commit a3229faad6949bbca965d1d7e138cb3c0550780e
author lecorguille
date Thu, 07 Apr 2016 16:01:08 -0400
parents 003373d58672
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
003373d58672 planemo upload
lecorguille
parents:
diff changeset
1 # USAGE: make [install|clean]
003373d58672 planemo upload
lecorguille
parents:
diff changeset
2
003373d58672 planemo upload
lecorguille
parents:
diff changeset
3 # -------- VARIABLE --------
003373d58672 planemo upload
lecorguille
parents:
diff changeset
4
003373d58672 planemo upload
lecorguille
parents:
diff changeset
5 OBJ=xcms_group.tgz
003373d58672 planemo upload
lecorguille
parents:
diff changeset
6 DEP=abims_xcms_group.xml tool_dependencies.xml repository_dependencies.xml static test-data
003373d58672 planemo upload
lecorguille
parents:
diff changeset
7
003373d58672 planemo upload
lecorguille
parents:
diff changeset
8
003373d58672 planemo upload
lecorguille
parents:
diff changeset
9 # ------------------------
003373d58672 planemo upload
lecorguille
parents:
diff changeset
10
003373d58672 planemo upload
lecorguille
parents:
diff changeset
11 all: $(OBJ)
003373d58672 planemo upload
lecorguille
parents:
diff changeset
12
003373d58672 planemo upload
lecorguille
parents:
diff changeset
13 $(OBJ): $(DEP)
003373d58672 planemo upload
lecorguille
parents:
diff changeset
14 tar --exclude=".svn" -zchf $@ $^
003373d58672 planemo upload
lecorguille
parents:
diff changeset
15
003373d58672 planemo upload
lecorguille
parents:
diff changeset
16 # ------------------------
003373d58672 planemo upload
lecorguille
parents:
diff changeset
17
003373d58672 planemo upload
lecorguille
parents:
diff changeset
18 install: $(OBJ)
003373d58672 planemo upload
lecorguille
parents:
diff changeset
19 mv *.tgz ~
003373d58672 planemo upload
lecorguille
parents:
diff changeset
20
003373d58672 planemo upload
lecorguille
parents:
diff changeset
21 clean:
003373d58672 planemo upload
lecorguille
parents:
diff changeset
22 rm *.tgz
003373d58672 planemo upload
lecorguille
parents:
diff changeset
23