Mercurial > repos > lecorguille > camera_annotate
annotate Makefile @ 12:db270f704d93 draft
planemo upload commit d8cc436fd91f5748dc396d0527a0a303d3221835-dirty
author | lecorguille |
---|---|
date | Thu, 14 Apr 2016 11:00:27 -0400 |
parents | b495191430d5 |
children |
rev | line source |
---|---|
0 | 1 # USAGE: make [install|clean] |
2 | |
3 # -------- VARIABLE -------- | |
4 | |
5 OBJ=camera_annotate.tgz | |
6 DEP=abims_CAMERA_annotateDiffreport.xml tool_dependencies.xml repository_dependencies.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 |