repo.or.cz
/
asure.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Generalize argument processing.
[asure.git]
/
Makefile
blob
d0e1426a1465aa6ba41e4bf2f2c5ff7519834f12
1
# Make for 'test'.
2
3
all
:
4
@echo Python is compiled on demand.
5
6
TESTS
= $(
wildcard
t_
*
.py
)
7
TESTS_RAN
= $(
patsubst
%,%-
passed
,$(
TESTS
))
8
test
sure
: $(
TESTS_RAN
)
9
10
%
.py-passed
: %
.py
11
python
$
^