]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/Makefile
new and improved classic. Pull lists and hold lists should probably include filters...
[Evergreen.git] / Open-ILS / xul / staff_client / Makefile
1 # ILS/Open-ILS/xul/staff_client/Makefile
2
3 export STAFF_CLIENT_BUILD_ID = $$(/bin/cat build/BUILD_ID)
4
5 all: build 
6         @echo
7         @echo
8
9 build: remove_symlinks build_dir generated open-ils custom stamp add_symlinks 
10         @echo
11         @echo 
12         @echo To test the staff client:
13         @echo "  cd build/"
14         @echo "  xulrunner application.ini"
15
16 remove_symlinks:
17         @echo
18         @echo Removing convenience symlinks from server/ and chrome/ before copying to build/
19         find server/ -type l -exec rm -f {} \;
20         find chrome/ -type l -exec rm -f {} \;
21
22 add_symlinks:
23         @echo
24         @echo Adding convenience symlinks back into server/ and chrome/
25         ln -s ../chrome/content/util server/util
26         ln -s ../chrome/content/auth server/auth
27         ln -s ../../chrome/content/main/constants.js server/main/constants.js
28         ln -s ../../chrome/content/main/lang.js server/main/lang.js
29         ln -s ../../chrome/content/main/simple_auth.xul server/main/simple_auth.xul
30         ln -s ../../chrome/content/OpenILS/data.js server/OpenILS/data.js
31         (cd build/chrome/content/OpenSRF/; for x in *; do ln -s  ../../../build/chrome/content/OpenSRF/$$x ../../../../chrome/content/OpenSRF/$$x; done)
32         (cd build/chrome/content/OpenILS/util/; for x in *; do if [ $$x != 'fmall.js' ]; then ln -s  ../../../../build/chrome/content/OpenILS/util/$$x ../../../../../chrome/content/OpenILS/util/$$x; fi ; done)
33         (cd build/chrome/content/legacy/; for x in [a-z]*; do ln -s  ../../../build/chrome/content/legacy/$$x ../../../../chrome/content/legacy/$$x; done)
34         (cd build/chrome/locale/en-US/; for x in *; do ln -s  ../../../build/chrome/locale/en-US/$$x ../../../../chrome/locale/en-US/$$x; done)
35
36 build_dir:
37         @echo
38         @echo '*********************************************************  Creating and populating build/ '
39         mkdir -p build/
40         cp -R chrome build/
41         cp -R server build/
42         cp -R defaults build/
43         cp -R components build/
44         cp application.ini build/
45         cp -R build/chrome/content/util/ build/server/
46         cp -R build/chrome/content/auth/ build/server/
47         cp build/chrome/content/main/constants.js build/server/main/constants.js
48         cp build/chrome/content/main/lang.js build/server/main/lang.js
49         cp build/chrome/content/main/simple_auth.xul build/server/main/simple_auth.xul
50         cp build/chrome/content/OpenILS/data.js build/server/OpenILS/data.js
51         cp build/chrome/content/OpenILS/global_util.js build/server/OpenILS/global_util.js
52         external/prune_dirs.sh build/
53
54 stamp: 
55         @echo
56         @/bin/date +"%Y%m%d.%H%M%S" > build/BUILD_ID
57         @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
58         @if [ -z "${STAFF_CLIENT_BUILD_ID}" ]; then ( echo "No Build ID for versioning" ; echo "none" > build/BUILD_ID ) ; fi
59         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i s/^Version=.\*/Version=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
60         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i s/^BuildID=.\*/BuildID=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
61         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then find build/ -name '*.xul' -exec sed -i s/xul\\\/server/xul\\\/${STAFF_CLIENT_BUILD_ID}\\\/server/g {} \; ; fi
62         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then find build/ -name '*.html' -exec sed -i s/xul\\\/server/xul\\\/${STAFF_CLIENT_BUILD_ID}\\\/server/g {} \; ; fi
63         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then find build/ -name '*.xhtml' -exec sed -i s/xul\\\/server/xul\\\/${STAFF_CLIENT_BUILD_ID}\\\/server/g {} \; ; fi
64         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then find build/ -name '*.js' -exec sed -i s/xul\\\/server/xul\\\/${STAFF_CLIENT_BUILD_ID}\\\/server/g {} \; ; fi
65
66 generated:
67         @echo
68         @echo '********************************************************* Grabbing lang.dtd from the OPAC code '
69         cp ../../../Open-ILS/web/opac/locale/en-US/lang.dtd build/chrome/locale/en-US/
70         external/dtd2js.pl build/chrome/locale/en-US/lang.dtd > build/chrome/content/main/lang.js
71
72 open-ils:
73         @echo
74         @echo '********************************************************* Grabbing more OPAC code and legacy code and custom code'
75         cp ../../../OpenSRF/src/javascript/*.js build/chrome/content/OpenSRF/
76         cp ../../../Open-ILS/web/opac/common/js/*.js build/chrome/content/OpenILS/util/
77         cp ../../../Evergreen/staff_client/chrome/content/evergreen/cat/marc* build/chrome/content/legacy/
78         cp ../../../Evergreen/staff_client/chrome/content/evergreen/cat/browse* build/chrome/content/legacy/
79         cp ../../../Evergreen/staff_client/chrome/locale/en-US/evergreen/cat.dtd build/chrome/locale/en-US/
80         cp -R ../../../Evergreen/xul/staff_client/server/ build/
81         external/prune_dirs.sh build/
82         find build/chrome/content/legacy/ -type f -name '*.*' -exec sed -i s/evergreen/open_ils_staff_client/g {} \;
83
84 custom:
85         @echo
86         @echo
87         @echo '********************************************************* Placeholder for debugging tweaks '
88         #(cd chrome/content/OpenILS/util; cp RemoteRequest.js~ RemoteRequest.js)
89
90 clean: remove_symlinks
91         @echo
92         @echo '********************************************************* Removing build/ '
93         rm -rf build/