-
Notifications
You must be signed in to change notification settings - Fork 3
/
maintain.mk
47 lines (42 loc) · 1.52 KB
/
maintain.mk
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
#
# Copyright (C) 2011 Dachary <[email protected]>
#
# This software's license gives you freedom; you can copy, convey,
# propagate, redistribute and/or modify this program under the terms of
# the GNU Affero General Public License (AGPL) as published by the Free
# Software Foundation (FSF), either version 3 of the License, or (at your
# option) any later version of the AGPL published by the FSF.
#
# 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 Affero
# General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program in a file in the toplevel directory called
# "AGPLv3". If not, see <http://www.gnu.org/licenses/>.
plugins = activity auth chat djangoauth example mail table bot
all:
check:
make -C tests check
set -e ; for plugin in $(plugins); do \
make -C plugins/$$plugin check ; \
done
make -C mailing check
jscoverage --no-instrument=js/jquery.placeholder-1.0.1.js static static-coverage
website/manage.py test
clean:
set -e ; for plugin in $(plugins); do \
make -C plugins/$$plugin clean ; \
done
rm -f plugins/auth.py
make -C tests clean
find . -name '*,cover' | xargs rm -f
rm -fr static-coverage
rm -f etc/cardstories/twisted/plugins/dropin.cache
find . -name '*~' | xargs rm -f
find . -name '*.pyc' | xargs rm -f
rm -fr dist
rm -fr static/cardstories.zip
rm -f MANIFEST
rm -fr build