]> git.ipfire.org Git - pakfire.git/blame - Makefile
sat: Enhance Request class to remove, update or lock things.
[pakfire.git] / Makefile
CommitLineData
abea00b2
MT
1
2DESTDIR ?= /
3
4all: build
5
6.PHONY: build
7build:
8 python setup.py build
9
10.PHONY: clean
11clean:
12 python setup.py clean
c605d735 13 -rm -rfv build
abea00b2
MT
14
15.PHONY: dist
16dist:
17 python setup.py sdist
18
19.PHONY: install
20install:
21 python setup.py install --root $(DESTDIR)
22
23 -mkdir -pv $(DESTDIR)/etc/pakfire.repos.d
24 cp -vf examples/pakfire.conf $(DESTDIR)/etc/pakfire.conf
25 cp -vf examples/pakfire.repos.d/* $(DESTDIR)/etc/pakfire.repos.d/
ddfb317d
MT
26
27.PHONY: check
28check:
29 ./runpychecker.sh