File: Makefile

package info (click to toggle)
apt-offline 1.8.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 692 kB
  • sloc: python: 4,327; sh: 310; makefile: 19
file content (20 lines) | stat: -rw-r--r-- 317 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
all: build html

gui:
	cd apt_offline_gui ; ./genui.sh || exit 1

build:gui
	python3 setup.py build

install:
	python3 setup.py install

html:
	man2html apt-offline.8 > apt-offline.html
	
clean:
	rm -f apt_offline_gui/Ui_*.py
	rm -f apt_offline_gui/resources_rc.py
	rm -f *.pyc
	rm -rf build/
	rm -f apt-offline.html