Dotclear

source: Makefile @ 2999:7a766509c5aa

Revision 2999:7a766509c5aa, 3.8 KB checked in by Nicolas <nikrou77@…>, 10 years ago (diff)

Fix #2087 - Ambiguous column name for SQLite

RevLine 
[2558]1.PHONY: config-stamp
2
[0]3SHELL=/bin/sh
4DIST=_dist
5DC=$(DIST)/dotclear
6
7default:
8     @echo "make config or make dist"
9
[2558]10config: clean config-stamp
[0]11     mkdir -p ./$(DC)
[2537]12
[0]13     ## Copy needed folders and files
[2558]14     cp -pRf ./admin ./inc ./index.php ./CHANGELOG ./CREDITS ./LICENSE ./README.md ./CONTRIBUTING.md ./$(DC)/
[2537]15
[0]16     ## Locales directory
17     mkdir -p ./$(DC)/locales
18     cp -pRf ./locales/README ./locales/en ./locales/fr ./$(DC)/locales/
[2537]19
[2558]20     ## Remove tests directories and test stuff
[2931]21     rm -fr ./$(DC)/inc/libs/clearbricks/tests ./$(DC)/inc/libs/clearbricks/composer.*    \
22            ./$(DC)/inc/libs/clearbricks/.atoum.* ./$(DC)/inc/libs/clearbricks/vendor     \
23            ./$(DC)/inc/libs/clearbricks/bin ./$(DC)/inc/libs/clearbricks/_dist      \
[2999]24            ./$(DC)/.atoum.* ./$(DC)/test ./$(DC)/travis                        \
[2931]25            ./$(DC)/features ./$(DC)/travis ./$(DC)/behat.yml.dist ./$(DC)/composer.*
[2558]26
[0]27     ## Create cache, db, plugins and public folders
[2558]28     mkdir ./$(DC)/cache ./$(DC)/db ./$(DC)/plugins ./$(DC)/public ./$(DC)/themes
29     cp -p inc/.htaccess ./$(DC)/cache/
30     cp -p inc/.htaccess ./$(DC)/db/
31     cp -p inc/.htaccess ./$(DC)/plugins/
[2537]32
[0]33     ## Remove config file if any
34     rm -f ./$(DC)/inc/config.php
[2537]35
[2558]36     ## Copy built-in themes
37     cp -pRf \
38     ./themes/default \
39     ./themes/blueSilence \
40     ./themes/customCSS \
41     ./themes/ductile \
[2642]42     ./themes/berlin \
[2558]43     ./$(DC)/themes/
44
[2615]45     ## Copy built-in plugins based on DC_DISTRIB_PLUGINS constant
46     cp -pRf $$(grep DC_DISTRIB_PLUGINS inc/prepend.php | \
47          sed -e "s/.*,'//" -e "s/'.*//" | \
48          sed -e  's/\(^\|,\)/ .\/plugins\//g') \
[0]49     ./$(DC)/plugins/
[2537]50
[0]51     ## "Compile" .po files
52     ./build-tools/make-l10n.php ./$(DC)/
[2537]53
[0]54     ## Pack javascript files
55     find $(DC)/admin/js/*.js -exec ./build-tools/min-js.php \{\} \;
[707]56     find $(DC)/admin/js/ie7/*.js -exec ./build-tools/min-js.php \{\} \;
[0]57     find $(DC)/admin/js/jquery/*.js -exec ./build-tools/min-js.php \{\} \;
[1451]58     find $(DC)/admin/js/jsUpload/*.js -exec ./build-tools/min-js.php \{\} \;
[0]59     find $(DC)/plugins -name '*.js' -exec ./build-tools/min-js.php \{\} \;
60     find $(DC)/themes/default/js/*.js -exec ./build-tools/min-js.php \{\} \;
[2801]61     find $(DC)/inc/js -name '*.js' -exec ./build-tools/min-js.php \{\} \;
[2537]62
[0]63     ## Debug off
64     perl -pi -e "s|^//\*== DC_DEBUG|/*== DC_DEBUG|sgi;" $(DC)/inc/prepend.php $(DC)/inc/prepend.php
[2537]65
[2558]66     ## Remove scm files and folders from DC and CB
67     find ./$(DIST)/ -type d -name '.svn' | xargs -r rm -rf
68     find ./$(DIST)/ -type d -name '.hg'  | xargs -r rm -rf
69     find ./$(DIST)/ -type d -name '.git' | xargs -r rm -rf
70     find ./$(DIST)/ -type f -name '.*ignore' | xargs -r rm -rf
[2896]71     find ./$(DIST)/ -type f -name '.flow' | xargs -r rm -rf
[2558]72
[0]73     ## Create digest
74     cd $(DC) && ( \
75          md5sum `find . -type f -not -path "./inc/digest" -not -path "./cache/*" -not -path "./db/*" -not -path ./CHANGELOG` \
76          > inc/digests \
77     )
[2537]78
[0]79     touch config-stamp
80
81dist: config dist-tgz dist-zip dist-l10n
82
83deb:
[1581]84     cp ./README.md debian/README
[0]85     dpkg-buildpackage -rfakeroot
86
87dist-tgz:
88     [ -f config-stamp ]
89     cd $(DIST) && tar cfz dotclear-$$(grep DC_VERSION dotclear/inc/prepend.php | cut -d"'" -f4).tar.gz ./dotclear
90
91dist-zip:
92     [ -f config-stamp ]
93     cd $(DIST) && zip -r9 dotclear-$$(grep DC_VERSION dotclear/inc/prepend.php | cut -d"'" -f4).zip ./dotclear
94
95dist-l10n:
96     [ -f config-stamp ]
[2537]97
[0]98     rm -rf ./$(DIST)/l10n
99     mkdir -p ./$(DIST)/l10n
[2537]100
[0]101     find ./locales/ -maxdepth 1 -mindepth 1 -type d -not -name '.svn' -not -name '_pot' -not -name 'en' \
102     -exec cp -pRf \{\} ./$(DIST)/l10n/ \;
[2537]103
[0]104     find ./$(DIST)/l10n -type d -name '.svn' | xargs rm -rf
105     ./build-tools/make-l10n.php ./$(DIST)/l10n/
[2537]106
[0]107     cd ./$(DIST)/l10n && for i in *; do \
108          zip -r9 "$$i-$$(grep DC_VERSION ../dotclear/inc/prepend.php | cut -d"'" -f4).zip" "$$i"; \
109          rm -rf "$$i"; \
110     done
[2537]111
[0]112
113clean:
[2558]114     rm -rf $(DIST) config-stamp
[0]115
116
117## Modules (Themes and Plugins) ###############################################
118pack-tool:
119     [ "$(ipath)" != '' ]
120     [ "$(iname)" != '' ]
121     [ "$(iname)" != '' ]
122     [ -d $(ipath)/$(iname) ]
[2537]123
124
[2615]125copy-plugins: clean
Note: See TracBrowser for help on using the repository browser.

Sites map