File: Makefile

package info (click to toggle)
fusion-icon 0.2.4-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 731; makefile: 22; xml: 14
file content (16 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PREFIX = '/usr'
DESTDIR = '/'
interfaces = 'qt gtk'

all:
	@python3 setup.py build

install:
	@python3 setup.py install --prefix=${PREFIX} --root=${DESTDIR}

uninstall:
	@python3 setup.py uninstall

clean:
	rm -rf build/