From 18764f2761fa33fdafe99f1007ae4758a5bf987b Mon Sep 17 00:00:00 2001 From: Dean Wampler Date: Mon, 22 Mar 2010 15:04:29 -0500 Subject: [PATCH] Added a makefile for running the generate-combined.sh script. The Makefile serves as a clue to new users that a "build" is first required before using local copies of the JS files. --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b71596c --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +# Run the generate-combined.sh script. +# This Makefile isn't really necessary, but it serves as a "indicator" +# to new users that they need to do a "build" of sorts. +# +# Dean Wampler March 22, 2010 + +all: generate-combined + +generate-combined: + @echo Generating dygraph-combined.js + @generate-combined.sh -- 2.7.4