diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-04-18 16:50:38 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-04-18 16:50:38 +0200 |
commit | 5d32413e0708d825c927cbe2356a86ea3c7b9578 (patch) | |
tree | 935366dfe6b5e1c6e36ae13ee166795d3041063c /taler-build/Makefile | |
parent | 060d27e872d49177d802450e0b425d34b5a9c28b (diff) | |
download | deployment-5d32413e0708d825c927cbe2356a86ea3c7b9578.tar.gz deployment-5d32413e0708d825c927cbe2356a86ea3c7b9578.tar.bz2 deployment-5d32413e0708d825c927cbe2356a86ea3c7b9578.zip |
concept for buildbot rebuild scripts
Diffstat (limited to 'taler-build/Makefile')
-rw-r--r-- | taler-build/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/taler-build/Makefile b/taler-build/Makefile new file mode 100644 index 0000000..9c13867 --- /dev/null +++ b/taler-build/Makefile @@ -0,0 +1,20 @@ + +all: exchange-stamp bank-stamp merchant-stamp + +exchange-stamp: gnunet-stamp + ~/deplyoment/update_exchange.sh + touch $@ + +gnunet-stamp: + ~/deplyoment/update_exchange.sh + touch $@ + +bank-stamp: exchange-stamp + ~/deplyoment/update_bank.sh + touch $@ + + +merchant-stamp: exchange-stamp + ~/deplyoment/update_bank.sh + touch $@ + |