summaryrefslogtreecommitdiff
path: root/visualize/static/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-04-15 01:29:41 -0400
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-04-15 01:29:41 -0400
commit90873ef7de4bf842fbf6971836a373c555cfcbaa (patch)
tree52608c90e8a0fa13b1f2b4ccfade1d9162beb5d1 /visualize/static/Makefile
parent65e3ef63f7475a217da5205a788f52f3888ebea7 (diff)
parent7a8b5707b277f052b712c51574b0e28834b5a5f8 (diff)
Merge branch 'archweb-generic' into master-nomake
Diffstat (limited to 'visualize/static/Makefile')
-rw-r--r--visualize/static/Makefile23
1 files changed, 0 insertions, 23 deletions
diff --git a/visualize/static/Makefile b/visualize/static/Makefile
deleted file mode 100644
index 9a7f9828..00000000
--- a/visualize/static/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-include ../../common.mk
-
-d3-ver=3.0.6
-targets = d3-$(d3-ver)
-
-target-files=$(addsuffix .js,$(targets)) $(addsuffix .min.js,$(targets))
-all: $(target-files)
-clean:
- rm -f -- $(target-files)
-
-d3-$(d3-ver).js: %: \
- $(www)/https/raw.github.com/mbostock/d3/v$(d3-ver)/d3.js \
- $(www)/https/raw.github.com/mbostock/d3/v$(d3-ver)/LICENSE
- { \
- echo '/*! $@ - Data Driven Documents' && \
- echo ' * Version: $(d3-ver)' && \
- echo ' * Homepage: http://mbostock.github.com/d3/' && \
- echo ' * Copyright: 2012, Michael Bostock' && \
- echo ' * Licence: 3-Clause BSD' && \
- echo ' *' && \
- sed 's/.*/ * &/' $(<D)/LICENSE && \
- echo ' */' && \
- cat $< ;} > $@