summaryrefslogtreecommitdiff
path: root/talermerchantdemos/blog/static/web-common/Makefile.am
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-07-22 16:10:39 +0200
committerMS <ms@taler.net>2020-07-22 16:10:39 +0200
commit147658b30dfbce61f6f4e087a0c81e85899dda15 (patch)
tree9a632f65d14411967efc87e9ff6555ea52a4fc48 /talermerchantdemos/blog/static/web-common/Makefile.am
parent30a87f5941147fd6016767276fe5cbf1b43c7ae0 (diff)
downloadtaler-merchant-demos-147658b30dfbce61f6f4e087a0c81e85899dda15.tar.gz
taler-merchant-demos-147658b30dfbce61f6f4e087a0c81e85899dda15.tar.bz2
taler-merchant-demos-147658b30dfbce61f6f4e087a0c81e85899dda15.zip
no web-common
Diffstat (limited to 'talermerchantdemos/blog/static/web-common/Makefile.am')
-rw-r--r--talermerchantdemos/blog/static/web-common/Makefile.am51
1 files changed, 0 insertions, 51 deletions
diff --git a/talermerchantdemos/blog/static/web-common/Makefile.am b/talermerchantdemos/blog/static/web-common/Makefile.am
deleted file mode 100644
index 71c1d68..0000000
--- a/talermerchantdemos/blog/static/web-common/Makefile.am
+++ /dev/null
@@ -1,51 +0,0 @@
-# This Makefile.am is in the public domain
-EXTRA_DIST = \
- style.css \
- taler-wallet-lib.ts \
- chrome-any.d.ts \
- logo-2015-medium.png \
- licensing.rst \
- favicon-taler.ico \
- dropdown-navbar.html \
- lang.html \
- lang.css \
- lang.js \
- dropdown-navbar_style.css \
- dropdown-navbar_script.js \
- taler-fallback.css \
- tsconfig.json \
- AUTHORS
-
-# Some file may be missing here...
-pkgdata_DATA = \
- dropdown-navbar.html \
- favicon-taler.ico \
- logo-2015-medium.png \
- style.css \
- taler-wallet-lib.js
-
-all: taler-wallet-lib.min.js taler-wallet-lib.js.tar.gz taler-wallet-lib.js
-
-%.min.js: %.js
- python3 -m jsmin $< > $@
-
-%.js.tar.gz: %.js
- tar czf $@ $<
-
-taler-wallet-lib.js: taler-wallet-lib.ts chrome-any.d.ts
-if HAVE_TSC
- tsc
-else
- @echo
- @if [ ! -f "$@" ] ; then \
- echo "*** Error: typescript compiler 'tsc' is missing," \
- "can't build" $@ ; \
- echo ; \
- exit 1 ; \
- else \
- echo "*** Warning: typescript compiler 'tsc' is missing," \
- "using pre-build" $@ ; \
- touch "$@"; \
- fi
- @echo
-endif