File: Makefile

package info (click to toggle)
python-gammu 0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 648 kB
  • ctags: 643
  • sloc: ansic: 9,254; python: 1,770; makefile: 77; sh: 8
file content (13 lines) | stat: -rw-r--r-- 218 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: setup.py
	python setup.py build

clean: setup.py
	python setup.py clean

install: setup.py
	python setup.py install

dist: setup.py
	python setup.py sdist --formats=gztar,bztar,zip

.PHONY: all clean install dist