File: Makefile

package info (click to toggle)
mimms 3.2.1-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 112 kB
  • ctags: 41
  • sloc: python: 231; makefile: 48
file content (13 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
PYTHON=python
DESTDIR=/

all:
	$(PYTHON) setup.py build

install:
	$(PYTHON) setup.py install --root $(DESTDIR)

clean:
	$(PYTHON) setup.py clean
	rm -rf build
	find . \( -name "*.pyc" -or -name "*~" \) -exec rm {} \;