2009-04-26 06:43:27 +02:00
|
|
|
|
2010-03-14 06:04:09 +01:00
|
|
|
SRC_DIR = src
|
|
|
|
EXAMPLES_DIR = examples
|
|
|
|
BUILD_DIR = build
|
|
|
|
DIST_DIR = dist
|
2009-09-08 05:37:35 +02:00
|
|
|
|
2010-03-14 06:04:09 +01:00
|
|
|
JS_SRC_FILES = \
|
|
|
|
${SRC_DIR}/main.js \
|
|
|
|
${SRC_DIR}/grid.js \
|
|
|
|
${SRC_DIR}/agenda.js \
|
|
|
|
${SRC_DIR}/view.js \
|
|
|
|
${SRC_DIR}/util.js
|
2009-05-31 22:56:02 +02:00
|
|
|
|
2010-03-14 06:04:09 +01:00
|
|
|
CSS_SRC_FILES = \
|
|
|
|
${SRC_DIR}/css/main.css \
|
|
|
|
${SRC_DIR}/css/grid.css \
|
|
|
|
${SRC_DIR}/css/agenda.css
|
2009-09-08 05:37:35 +02:00
|
|
|
|
2010-03-14 06:04:09 +01:00
|
|
|
OTHER_FILES = \
|
|
|
|
${SRC_DIR}/jquery \
|
2009-09-08 05:37:35 +02:00
|
|
|
changelog.txt
|
2010-03-14 06:04:09 +01:00
|
|
|
|
|
|
|
VER = `cat version.txt`
|
|
|
|
VER_SED = sed s/@VERSION/"${VER}"/
|
|
|
|
DATE = `git log -1 | grep Date: | sed 's/[^:]*: *//'`
|
|
|
|
DATE_SED = sed s/@DATE/"${DATE}"/
|
2009-09-08 05:37:35 +02:00
|
|
|
|
2009-04-26 06:43:27 +02:00
|
|
|
zip:
|
2010-03-14 06:04:09 +01:00
|
|
|
@rm -rf ${BUILD_DIR}/fullcalendar
|
|
|
|
@rm -rf ${BUILD_DIR}/fullcalendar-*
|
|
|
|
@mkdir -p ${BUILD_DIR}/fullcalendar
|
2009-09-08 09:50:23 +02:00
|
|
|
|
2010-03-14 06:04:09 +01:00
|
|
|
@echo "building js..."
|
|
|
|
@cat ${SRC_DIR}/misc/head.txt ${JS_SRC_FILES} ${SRC_DIR}/misc/foot.txt \
|
|
|
|
| ${VER_SED} | ${DATE_SED} \
|
|
|
|
> ${BUILD_DIR}/fullcalendar/fullcalendar.js
|
|
|
|
@cat ${SRC_DIR}/gcal.js \
|
|
|
|
| ${VER_SED} | ${DATE_SED} \
|
|
|
|
> ${BUILD_DIR}/fullcalendar/gcal.js
|
|
|
|
|
2009-09-16 08:17:37 +02:00
|
|
|
@echo "compressing js..."
|
2010-03-14 06:04:09 +01:00
|
|
|
@java -jar ${BUILD_DIR}/compiler.jar --js ${BUILD_DIR}/fullcalendar/fullcalendar.js \
|
|
|
|
> ${BUILD_DIR}/fullcalendar/fullcalendar.min.js
|
|
|
|
|
|
|
|
@echo "building css..."
|
|
|
|
@cat ${CSS_SRC_FILES} \
|
|
|
|
| ${VER_SED} | ${DATE_SED} \
|
|
|
|
> ${BUILD_DIR}/fullcalendar/fullcalendar.css
|
|
|
|
|
2009-09-08 09:50:23 +02:00
|
|
|
@echo "building examples..."
|
2010-03-14 06:04:09 +01:00
|
|
|
@mkdir -p ${BUILD_DIR}/fullcalendar/examples
|
|
|
|
@for f in `cd ${EXAMPLES_DIR}; find . -mindepth 1 -maxdepth 1 -type f`; do \
|
|
|
|
cat ${EXAMPLES_DIR}/$$f \
|
|
|
|
| sed -n '1h;1!H;$${;g;s/<!--\s*<src>.*<\/src>\s*-->\s*//g;p;}' \
|
|
|
|
| sed -n '1h;1!H;$${;g;s/<!--\s*<dist>\s*//g;p;}' \
|
|
|
|
| sed -n '1h;1!H;$${;g;s/<\/dist>\s*-->\s*//g;p;}' \
|
|
|
|
> ${BUILD_DIR}/fullcalendar/examples/$$f; \
|
2009-09-08 09:50:23 +02:00
|
|
|
done
|
2010-03-14 06:04:09 +01:00
|
|
|
@for d in `cd ${EXAMPLES_DIR}; find . -mindepth 1 -maxdepth 1 -type d`; do \
|
|
|
|
cp -r ${EXAMPLES_DIR}/$$d ${BUILD_DIR}/fullcalendar/examples/$$d; \
|
|
|
|
done
|
|
|
|
|
|
|
|
@echo "copying other files..."
|
|
|
|
@cp -r ${OTHER_FILES} ${BUILD_DIR}/fullcalendar
|
|
|
|
|
2009-09-08 09:50:23 +02:00
|
|
|
@echo "zipping..."
|
2010-03-14 06:04:09 +01:00
|
|
|
@mv ${BUILD_DIR}/fullcalendar ${BUILD_DIR}/fullcalendar-${VER}
|
|
|
|
@cd ${BUILD_DIR}; for f in fullcalendar-*; do \
|
|
|
|
zip -q -r $$f.zip $$f; \
|
2009-09-16 08:17:37 +02:00
|
|
|
done
|
2010-03-14 06:04:09 +01:00
|
|
|
@mv ${BUILD_DIR}/fullcalendar-${VER} ${BUILD_DIR}/fullcalendar
|
2009-09-08 09:50:23 +02:00
|
|
|
|
2010-03-14 06:04:09 +01:00
|
|
|
@mkdir -p ${DIST_DIR}
|
|
|
|
@mv ${BUILD_DIR}/fullcalendar-${VER}.zip ${DIST_DIR}
|
2009-09-08 09:50:23 +02:00
|
|
|
@echo "done."
|
|
|
|
|
|
|
|
clean:
|
2010-03-14 06:04:09 +01:00
|
|
|
@rm -rf ${BUILD_DIR}/fullcalendar
|
|
|
|
@rm -rf ${BUILD_DIR}/fullcalendar-*
|
|
|
|
@rm -rf ${DIST_DIR}/*
|
2009-11-23 05:45:19 +01:00
|
|
|
|