forked from bleachbit/bleachbit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
73 lines (58 loc) · 1.82 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
# On some systems if not explicitly given, make uses /bin/sh
SHELL := /bin/bash
.PHONY: clean install tests build
prefix ?= /usr/local
bindir ?= $(prefix)/bin
datadir ?= $(prefix)/share
INSTALL = install
INSTALL_DATA = $(INSTALL) -m 644
build:
echo Nothing to build
clean:
@rm -vf {.,bleachbit,tests}/*{pyc,pyo,~}
@rm -vrf build dist # created by py2exe
@rm -rf BleachBit-Portable # created by windows/setup_py2exe.bat
@rm -rf BleachBit-0.0.0-portable.zip
@rm -vf MANIFEST # created by setup.py
make -C po clean
@rm -vrf locale
@rm -vrf {*/,./}*.{pychecker,pylint,pyflakes}.log
@rm -vrf windows/BleachBit-0.0.0-setup.exe
install:
# "binary"
mkdir -p $(DESTDIR)$(bindir)
$(INSTALL_DATA) bleachbit.py $(DESTDIR)$(bindir)/bleachbit
chmod 0755 $(DESTDIR)$(bindir)/bleachbit
# .desktop
mkdir -p $(DESTDIR)$(datadir)/applications
$(INSTALL_DATA) bleachbit.desktop $(DESTDIR)$(datadir)/applications/
# Python code
mkdir -p $(DESTDIR)$(datadir)/bleachbit
$(INSTALL_DATA) bleachbit/*.py $(DESTDIR)$(datadir)/bleachbit
cd $(DESTDIR)$(datadir)/bleachbit && \
python -O -c "import compileall; compileall.compile_dir('.')" && \
python -c "import compileall; compileall.compile_dir('.')"
# cleaners
mkdir -p $(DESTDIR)$(datadir)/bleachbit/cleaners
$(INSTALL_DATA) cleaners/*xml $(DESTDIR)$(datadir)/bleachbit/cleaners
# icon
mkdir -p $(DESTDIR)$(datadir)/pixmaps
$(INSTALL_DATA) bleachbit.png $(DESTDIR)$(datadir)/pixmaps/
# translations
make -C po install DESTDIR=$(DESTDIR)
lint:
for f in *py */*py; \
do \
echo "$$f" ; \
pychecker "$$f" > "$$f".pychecker.log ; \
pyflakes "$$f" > "$$f".pyflakes.log ; \
pylint "$$f" > "$$f".pylint.log ; \
done; \
exit 0
tests:
make -C cleaners tests
python tests/TestAll.py -v
pretty:
autopep8 -i {.,bleachbit,tests}/*py
dos2unix {.,bleachbit,tests}/*py
make -C cleaners pretty