]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/Makefile
488940aa6461c9a6b242cb38bb37cb11dcac6a1d
[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         external/prune_dirs.sh build/
52
53 stamp: 
54         @echo
55         @/bin/date +"%Y%m%d.%H%M%S" > build/BUILD_ID
56         @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
57         @if [ -z "${STAFF_CLIENT_BUILD_ID}" ]; then ( echo "No Build ID for versioning" ; echo "none" > build/BUILD_ID ) ; fi
58         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i s/^Version=.\*/Version=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
59         @if [ -n "${STAFF_CLIENT_BUILD_ID}" ]; then sed -i s/^BuildID=.\*/BuildID=${STAFF_CLIENT_BUILD_ID}/ build/application.ini ; fi
60         @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
61         @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
62         @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
63
64 generated:
65         @echo
66         @echo '********************************************************* Grabbing lang.dtd from the OPAC code '
67         cp ../../../Open-ILS/web/opac/locale/en-US/lang.dtd build/chrome/locale/en-US/
68         external/dtd2js.pl build/chrome/locale/en-US/lang.dtd > build/chrome/content/main/lang.js
69
70 open-ils:
71         @echo
72         @echo '********************************************************* Grabbing more OPAC code and legacy code and custom code'
73         cp ../../../OpenSRF/src/javascript/*.js build/chrome/content/OpenSRF/
74         cp ../../../Open-ILS/web/opac/common/js/*.js build/chrome/content/OpenILS/util/
75         cp ../../../Evergreen/staff_client/chrome/content/evergreen/cat/marc* build/chrome/content/legacy/
76         cp ../../../Evergreen/staff_client/chrome/content/evergreen/cat/browse* build/chrome/content/legacy/
77         cp ../../../Evergreen/staff_client/chrome/locale/en-US/evergreen/cat.dtd build/chrome/locale/en-US/
78         cp -R ../../../Evergreen/xul/staff_client/server/ build/
79         external/prune_dirs.sh build/
80         find build/chrome/content/legacy/ -type f -name '*.*' -exec sed -i s/evergreen/open_ils_staff_client/g {} \;
81
82 custom:
83         @echo
84         @echo
85         @echo '********************************************************* Placeholder for debugging tweaks '
86         #(cd chrome/content/OpenILS/util; cp RemoteRequest.js~ RemoteRequest.js)
87
88 clean: remove_symlinks
89         @echo
90         @echo '********************************************************* Removing build/ '
91         rm -rf build/