]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/Makefile
client side build and versioning
[Evergreen.git] / Open-ILS / xul / staff_client / Makefile
1 # ILS/Open-ILS/xul/staff_client/Makefile
2
3 export STAFF_CLIENT_BUILD_ID = `/bin/date +"%Y%m%d.%H%M%S"`
4
5 all: build 
6         @echo
7         @echo
8
9 build: build_dir generated open-ils custom stamp
10         @echo
11         @echo 
12         @echo To test the staff client:
13         @echo "  cd build/"
14         @echo "  xulrunner application.ini"
15
16 build_dir:
17         @echo
18         @echo '*********************************************************  Creating and populating build/ '
19         mkdir -p build/
20         cp -R chrome build/
21         cp -R server build/
22         cp application.ini build/
23         cp -R build/chrome/content/util/ build/server/
24         cp build/chrome/content/main/constants.js build/server/main/constants.js
25         cp build/chrome/content/OpenILS/data.js build/server/OpenILS/data.js
26         external/prune_dirs.sh build/
27
28 stamp: 
29         @echo
30         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then ( echo "Stamping with Build ID: ${STAFF_CLIENT_BUILD_ID}" ; echo "${STAFF_CLIENT_BUILD_ID}" > build/BUILD_ID) ; fi
31         @if [ -z "${STAFF_CLIENT_BUILD_ID}" ]; then ( echo "No Build ID for versioning"; echo "none" > build/BUILD_ID ) ; fi
32         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i s/^Version=.\*/Version=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
33         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i s/^BuildID=.\*/BuildID=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
34         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then find build/ -name '*.xul' -or -name '*.js' -exec sed -i s/xul\\\/server/xul\\\/${STAFF_CLIENT_BUILD_ID}\\\/server/g {} \; ; fi
35
36 generated:
37         @echo
38         @echo '********************************************************* Grabbing lang.dtd from the OPAC code '
39         cp ../../../Open-ILS/web/opac/locale/en-US/lang.dtd build/chrome/locale/en-US/
40         external/dtd2js.pl build/chrome/locale/en-US/lang.dtd > build/chrome/content/main/lang.js
41
42 open-ils:
43         @echo
44         @echo '********************************************************* Grabbing more OPAC code and legacy code '
45         cp ../../../OpenSRF/src/javascript/*.js build/chrome/content/OpenSRF/
46         cp ../../../Open-ILS/web/opac/common/js/*.js build/chrome/content/OpenILS/util/
47         cp ../../../Evergreen/staff_client/chrome/content/evergreen/cat/marc* build/chrome/content/legacy/
48         cp ../../../Evergreen/staff_client/chrome/content/evergreen/cat/browse* build/chrome/content/legacy/
49         cp ../../../Evergreen/staff_client/chrome/locale/en-US/evergreen/cat.dtd build/chrome/locale/en-US/
50         find build/chrome/content/legacy/ -type f -name '*.*' -exec sed -i s/evergreen/open_ils_staff_client/g {} \;
51
52 custom:
53         @echo
54         @echo
55         @echo '********************************************************* Placeholder for debugging tweaks '
56         #(cd chrome/content/OpenILS/util; cp RemoteRequest.js~ RemoteRequest.js)
57
58 clean:
59         @echo
60         @echo '********************************************************* Removing build/ '
61         rm -rf build/