summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2018-03-19 18:59:39 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2018-03-19 19:07:55 -0400
commitb1eecdbc3a4314058ddee1b46d4ffab5940e580f (patch)
treeecc4e1e290f5fa39011d2a6890c33efabf1df49f /Makefile
parent205c0c169a8a0a1a90522234fadd297a97a735bd (diff)
clean up dependency acquisition
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 5 insertions, 13 deletions
diff --git a/Makefile b/Makefile
index 6985fac..6861a0a 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,6 @@ outs = $(patsubst public-src/%,public/%,\
$(srcs))))
all: $(outs)
all: public/3rd-party
-all: jarmon-dependencies
.PHONY: all
NET-%:
@@ -54,21 +53,14 @@ public/tls.html.part public/crtsh.html.part public/diff.html.part: \
public/%.html.part: public/%.pem bin/%-pem2html
bin/$*-pem2html < $< > $@
-public-src/jarmon-depenencies: jarmon/docs/examples/assets/js/dependencies.js
-jarmon/docs/examples/assets/js/dependencies.js: FORCE
- $(MAKE) -C jarmon docs/examples/assets/js/dependencies.js
-
public-src/3rd-party/yarn.LICENSES.txt: bin/yarn-bower public-src/3rd-party/package.json $(wildcard public-src/3rd-party/yarn.lock)
bin/yarn-bower install
bin/yarn-bower licenses generate-disclaimer > $@
public/3rd-party: public-src/3rd-party/yarn.LICENSES.txt
+public/3rd-party: public-src/3rd-party/jquery-1.6.3.js
+public/3rd-party:
+ @touch $@
public-src/jarmon-style/%.gif: public-src/3rd-party/yarn.LICENSES.txt
@test -f $@
-
-jquery-ver=1.6.3
-
-jarmon-dependencies: public-src/jarmon-dependencies/jquery-$(jquery-ver).js
-
-public-src/jarmon-dependencies/jquery-%.js:
- @mkdir -p '$(@D)'
- wget -O $@ 'http://code.jquery.com/jquery-$*.js'
+public-src/3rd-party/jquery-%.js:
+ wget -O - 'http://code.jquery.com/jquery-$*.js' > $@