17 lines
106 B
Bash
17 lines
106 B
Bash
#!/bin/sh
|
|
|
|
|
|
all:
|
|
|
|
run:
|
|
$(PYTHON_CMD) combustor.py
|
|
|
|
test:
|
|
./runtest
|
|
|
|
|
|
clean:
|
|
./cleanup
|
|
|
|
# end of file
|
|
|