16 lines
270 B
Makefile
16 lines
270 B
Makefile
#!/bin/sh
|
|
|
|
# test target -> make the program and run the test
|
|
test:
|
|
./runtest @PYTHON_CMD@
|
|
@cd tut1; ./runtest @PYTHON_CMD@
|
|
@cd tut2; ./runtest @PYTHON_CMD@
|
|
|
|
# clean target -> clean up
|
|
clean:
|
|
../../bin/rm_cvsignore
|
|
cd tut1; ./cleanup
|
|
cd tut2; ./cleanup
|
|
|
|
depends:
|
|
|