aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJames Lal <james@lightsofapollo.com>2012-09-19 11:11:16 -0700
committerJames Lal <james@lightsofapollo.com>2012-09-19 11:11:16 -0700
commit0cac01e4243b112f3c0820c89d9de2bf38005c79 (patch)
tree1fc042f4d9b26f21f606e4dff15c7c70bab2f70b /Makefile
parent459e5b14f1868960e60c8fc358103cd6fbbaed7f (diff)
downloadjsCalDAV-0cac01e4243b112f3c0820c89d9de2bf38005c79.tar.gz
decouple ical-js will resolve #5
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e3ef6b8..51d8eb2 100644
--- a/Makefile
+++ b/Makefile
@@ -16,15 +16,11 @@ 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);
echo ';' >> $(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)
cat $(LIB_ROOT)/sax.js >> $(WEB_FILE)
cat $(LIB_ROOT)/template.js >> $(WEB_FILE)
@@ -33,6 +29,7 @@ package: test-agent-config
cat $(LIB_ROOT)/templates/calendar_data.js >> $(WEB_FILE)
cat $(LIB_ROOT)/templates/calendar_filter.js >> $(WEB_FILE)
cat $(LIB_ROOT)/sax/base.js >> $(WEB_FILE)
+ cat $(LIB_ROOT)/sax/calendar_data_handler.js >> $(WEB_FILE)
cat $(LIB_ROOT)/sax/dav_response.js >> $(WEB_FILE)
cat $(LIB_ROOT)/request/abstract.js >> $(WEB_FILE)
cat $(LIB_ROOT)/request/propfind.js >> $(WEB_FILE)