forked from owncloud/notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
106 lines (79 loc) · 2.66 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#
# ownCloud scaffolder tool
#
# Copyright (C) 2013 Bernhard Posselt, <nukewhale@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# Makefile for building the project
app_name=notes
project_dir=$(CURDIR)/../$(app_name)
build_dir=$(CURDIR)/build/artifacts
appstore_dir=$(build_dir)/appstore
package_name=$(app_name)
# binary directories for running the CI tests
firefox_bin=/usr/bin/firefox
chrome_bin=/usr/bin/chromium
phantomjs_bin=/usr/bin/phantomjs
js_dir=$(CURDIR)/js
js_public_dir=$(js_dir)/public
# common directories
grunt_dir=$(js_dir)/node_modules/grunt-cli/bin/grunt
bower_dir=$(js_dir)/node_modules/bower/bin/bower
gruntfile_dir=$(js_dir)/Gruntfile.js
php_unit_tests_dir=$(CURDIR)/tests/unit
php_integration_tests_dir=$(CURDIR)/tests/integration
php_acceptance_tests_dir=$(CURDIR)/tests/acceptance
# building the javascript
all: build
build: deps
mkdir -p $(js_public_dir)
$(grunt_dir) --config $(gruntfile_dir) build
watch: build
$(grunt_dir) --config $(gruntfile_dir) watch:concat
update: deps
$(bower_dir) update
# testing
tests: js-unit-tests php-unit-tests php-integration-tests php-acceptance-tests
unit-tests: js-unit-tests php-unit-tests
# testing js
js-unit-tests: deps
export PHANTOMJS_BIN=$(phantomjs_bin) && \
$(grunt_dir) --config $(gruntfile_dir) karma:continuous
watch-js-unit-tests: deps
export CHROME_BIN=$(chrome_bin) && export FIREFOX_BIN=$(firefox_bin) && \
$(grunt_dir) --config $(gruntfile_dir) karma:unit
# testing php
php-unit-tests: deps
phpunit $(php_unit_tests_dir)
watch-php-unit-tests: deps
$(grunt_dir) --config $(gruntfile_dir) watch:phpunit
php-integration-tests: deps
phpunit $(php_integration_tests_dir)
php-acceptance-tests: deps
cd $(php_acceptance_tests_dir); make headless
# general
deps:
cd js
npm install --deps
cd ..
clean:
rm -rf $(CURDIR)/node_modules
rm -rf $(build_dir)
dist: appstore
appstore: clean
mkdir -p $(appstore_dir)
tar cvzf $(appstore_dir)/$(package_name).tar.gz $(project_dir) \
--exclude-vcs --exclude=$(project_dir)/build/artifacts #\
# --exclude=$(project_dir)/tests \
#--exclude=$(project_dir)/.travis.yml