-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (37 loc) · 1.03 KB
/
Makefile
File metadata and controls
45 lines (37 loc) · 1.03 KB
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
bindir = /usr/bin
all: nbfc-gtk.py
nbfc-gtk.py: \
src/main.py \
src/errors.py \
src/nbfc_client.py \
src/subprocess_worker.py \
src/gtk_common.py \
src/common.py \
src/version.py \
src/widgets/apply_buttons_widget.py \
src/widgets/about_widget.py \
src/widgets/service_control_widget.py \
src/widgets/basic_config_widget.py \
src/widgets/fan_widget.py \
src/widgets/fan_control_widget.py \
src/widgets/sensor_widget.py \
src/widgets/sensors_widget.py \
src/widgets/update_widget.py \
src/widgets/early_error_window.py \
src/widgets/main_window.py
(cd ./src; python3 ./include_files.py main.py > ../nbfc-gtk.py)
chmod +x nbfc-gtk.py
README.md: .force
./tools/update_readme.py README.md.in > README.md
pkgbuilds/nbfc-gtk/PKGBUILD: .force
./tools/update_pkgbuild.py pkgbuilds/nbfc-gtk/PKGBUILD.in > pkgbuilds/nbfc-gtk/PKGBUILD
install:
install -Dm 755 nbfc-gtk.py $(DESTDIR)$(bindir)/nbfc-gtk
uninstall:
rm -f $(DESTDIR)$(bindir)/nbfc-gtk
clean:
rm -rf __pycache__
rm -f nbfc-gtk.py
rm -f src/ico.py
.force:
@true