Mercurial > repos > lecorguille > xcms_xcmsset
diff Makefile @ 0:1bad16e5e4ae draft
planemo upload
| author | lecorguille | 
|---|---|
| date | Fri, 07 Aug 2015 07:48:57 -0400 | 
| parents | |
| children | 
line wrap: on
 line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Fri Aug 07 07:48:57 2015 -0400 @@ -0,0 +1,23 @@ +# USAGE: make [install|clean] + +# -------- VARIABLE -------- + +OBJ=xcms_set.tgz +DEP=abims_xcms_xcmsSet.xml tool_dependencies.xml repository_dependencies.xml static test-data + + +# ------------------------ + +all: $(OBJ) + +$(OBJ): $(DEP) + tar --exclude=".svn" -zchf $@ $^ + +# ------------------------ + +install: $(OBJ) + mv *.tgz ~ + +clean: + rm *.tgz +
