aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-07-26 08:00:25 -0700
committerJames Lal <james@lightsofapollo.com>2012-07-26 08:00:25 -0700
commit0ca56ee8c47a580d33881ea05a5975e507131172 (patch)
tree89659313b2e8c1c5cd04257f7f8bf2d63a7ae339 /Makefile
parent55aa47aab5bba0126d33ff44fa0dbf7472a2d91a (diff)
downloadjsCalDAV-0ca56ee8c47a580d33881ea05a5975e507131172.tar.gz
ical.js
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4f47571..e3ef6b8 100644
--- a/Makefile
+++ b/Makefile
@@ -16,10 +16,13 @@ package: test-agent-config
cp ./node_modules/test-agent/test-agent.js $(VENDOR)
cp ./node_modules/test-agent/test-agent.css $(VENDOR)
+ echo '/* ical.js - https://github.com/kewisch/ical.js */' >> $(WEB_FILE);
+ echo '' >> $(WEB_FILE);
+ cat ./lib/ical.js >> $(WEB_FILE);
echo '/* sax js - LICENSE: https://github.com/isaacs/sax-js/blob/master/LICENSE */' >> $(WEB_FILE)
- cat $(VENDOR)/sax.js >> $(WEB_FILE)
+ cat $(VENDOR)/sax.js >> $(WEB_FILE);
echo ';' >> $(WEB_FILE)
- echo '/* caldav.js */' >> $(WEB_FILE)
+ echo '/* caldav.js - https://github.com/mozilla-b2g/caldav */' >> $(WEB_FILE)
cat $(LIB_ROOT)/caldav.js >> $(WEB_FILE)
cat $(LIB_ROOT)/ical.js >> $(WEB_FILE)
cat $(LIB_ROOT)/responder.js >> $(WEB_FILE)