summaryrefslogtreecommitdiff
path: root/Makefile.am
blob: 2dde338a8db579fc49a73ccef922b13230689f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This Makefile.am is in the public domain
EXTRA_DIST = \
 pure.css \
 demo.css \
 chrome-any.d.ts \
 licensing.rst \
 favicon-taler.ico \
 taler-fallback.css \
 tsconfig.json \
 AUTHORS

# Some file may be missing here...
pkgdata_DATA = \
  favicon-taler.ico 

all: 
install: 

%.min.js: %.js
	python3 -m jsmin $< > $@

%.js.tar.gz: %.js
	tar czf $@ $<