Changeset 176:efce877d223b
- Timestamp:
- 2007-08-04 16:33:37
(1 year ago)
- Author:
- Stefan Schwarzer <sschwarzer@sschwarzer.net>
- branch:
- default
- Message:
Some small fixes.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r173 |
r176 |
|
| 28 | 28 | SED=sed -i'' -r -e |
|---|
| 29 | 29 | |
|---|
| 30 | | .PHONY: dist extdist test docs clean register patch |
|---|
| | 30 | .PHONY: dist extdist test docs clean register |
|---|
| 31 | 31 | .SUFFIXES: .txt .html |
|---|
| 32 | 32 | |
|---|
| 33 | 33 | test: |
|---|
| 34 | | python test.py |
|---|
| | 34 | (cd ${PROJECT_DIR} && python test.py) |
|---|
| 35 | 35 | |
|---|
| 36 | 36 | .txt.html: |
|---|
| … | … | |
| 39 | 39 | docs: ${DOC_FILES} README.txt |
|---|
| 40 | 40 | |
|---|
| 41 | | dist: clean patch docs |
|---|
| | 41 | dist: clean docs |
|---|
| 42 | 42 | python setup.py sdist |
|---|
| 43 | 43 | |
|---|