10 lines
152 B
Makefile
10 lines
152 B
Makefile
#!/bin/sh
|
|
|
|
# test target -> make the program and run the test
|
|
test:
|
|
./runtest @PYTHON_CMD@
|
|
|
|
# clean target -> clean up
|
|
clean:
|
|
../../bin/rm_cvsignore
|
|
|