summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-07-14 15:04:01 -0600
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-07-14 15:04:01 -0600
commit7ccccb7abbf0f7a393fea8d3334abdbf2025db62 (patch)
treed5a6fedb84d32c7bf7b5b029a0cecca4d167bac4 /Makefile
parentf6b335b268f5f47e5c48f84f5994f7bdcd8b7e5a (diff)
Add Makefiles to download .js files, and generate .min.js files.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000..9c3fafea
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,11 @@
+subdirs = sitestatic visualize/static
+
+define newline =
+
+
+endef
+
+default: all ;
+
+%:
+ $(foreach subdir,$(subdirs),$(MAKE) -C $(subdir) $@$(newline))