summaryrefslogtreecommitdiff
path: root/taler-build/Makefile
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-04-24 21:58:44 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-04-24 21:58:44 +0200
commit93ab0c6e0829e3b6f99b596b6d1e5dbb9f8b3939 (patch)
tree8c595f6a44c47bad945254540a1de3964a407c38 /taler-build/Makefile
parentbcd09e9a0036c004c1a1c0dbd58c67e716cea786 (diff)
downloaddeployment-93ab0c6e0829e3b6f99b596b6d1e5dbb9f8b3939.tar.gz
deployment-93ab0c6e0829e3b6f99b596b6d1e5dbb9f8b3939.tar.bz2
deployment-93ab0c6e0829e3b6f99b596b6d1e5dbb9f8b3939.zip
make scripts relative
Diffstat (limited to 'taler-build/Makefile')
-rw-r--r--taler-build/Makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/taler-build/Makefile b/taler-build/Makefile
index 954e4b2..de8aaee 100644
--- a/taler-build/Makefile
+++ b/taler-build/Makefile
@@ -1,29 +1,29 @@
all: exchange-stamp bank-stamp merchant-stamp gnunet-stamp merchant-frontends-stamp
exchange-stamp: gnunet-stamp
- ~/deployment/taler-build/update_exchange.sh
+ ./update_exchange.sh
touch $@
gnunet-stamp: libmicrohttpd-stamp libgnurl-stamp
- ~/deployment/taler-build/update_gnunet.sh
+ ./update_gnunet.sh
touch $@
bank-stamp: exchange-stamp
- ~/deployment/taler-build/update_bank.sh
+ ./update_bank.sh
touch $@
merchant-stamp: exchange-stamp
- ~/deployment/taler-build/update_merchant.sh
+ ./update_merchant.sh
touch $@
libmicrohttpd-stamp:
- ~/deployment/taler-build/update_libmicrohttpd.sh
+ ./update_libmicrohttpd.sh
touch $@
libgnurl-stamp:
- ~/deployment/taler-build/update_libgnurl.sh
+ ./update_libgnurl.sh
touch $@
merchant-frontends-stamp:
- ~/deployment/taler-build/update_merchant_frontends.sh
+ ./update_merchant_frontends.sh
touch $@