summaryrefslogtreecommitdiff
path: root/Makefile
blob: 23a4b5c8974aaffb54e15214ad20095c28c4075f (plain)
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
PYTHON ?= python
VERSION = $(shell cat VERSION)
TAGVER = $(shell cat VERSION | sed -e "s/\([0-9\.]*\).*/\1/")

PKGNAME = micng

ifeq ($(VERSION), $(TAGVER))
	TAG = $(TAGVER)
else
	TAG = "HEAD"
endif


all:
	$(PYTHON) setup.py build

dist-bz2:
	git archive --format=tar --prefix=$(PKGNAME)-$(VERSION)/ $(TAG) | \
		bzip2  > $(PKGNAME)-$(VERSION).tar.bz2

dist-gz:
	git archive --format=tar --prefix=$(PKGNAME)-$(VERSION)/ $(TAG) | \
		gzip  > $(PKGNAME)-$(VERSION).tar.gz

install: all
	$(PYTHON) setup.py install --root=${DESTDIR}

develop: all
	$(PYTHON) setup.py develop

clean:
	rm -f tools/*.py[co]
	rm -rf *.egg-info
	rm -rf build/
	rm -rf dist/