File: Makefile

package info (click to toggle)
mimms 3.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 140 kB
  • ctags: 37
  • sloc: python: 231; makefile: 12
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 {} \;