annotate Makefile @ 14:8a23c743e6ea draft

planemo upload for repository https://github.com/workflow4metabolomics/xcms commit 92dd69e5b063aad05a9b2b75e21c78bfa46c4b94
author lecorguille
date Thu, 22 Dec 2016 06:00:11 -0500
parents 30b01bcefda4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
1 # USAGE: make [install|clean]
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
2
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
3 # -------- VARIABLE --------
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
4
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
5 OBJ=xcms_fillpeaks.tgz
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
6 DEP=abims_xcms_fillPeaks.xml tool_dependencies.xml repository_dependencies.xml static test-data
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
7
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
8
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
9 # ------------------------
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
10
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
11 all: $(OBJ)
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
12
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
13 $(OBJ): $(DEP)
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
14 tar --exclude=".svn" -zchf $@ $^
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
15
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
16 # ------------------------
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
17
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
18 install: $(OBJ)
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
19 mv *.tgz ~
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
20
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
21 clean:
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
22 rm *.tgz
30b01bcefda4 planemo upload
lecorguille
parents:
diff changeset
23