Completed adding Makefile.win

This commit is contained in:
Harry Moffat 2009-07-17 19:37:01 +00:00
parent 8fe5b865d4
commit 8e8aff1499
5 changed files with 77 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#!/bin/sh
run:
$(PYTHON_CMD) isentropic.py
test:
./runtest
clean:
./cleanup
# end of file

View file

@ -0,0 +1,14 @@
#!/bin/sh
run:
$(PYTHON_CMD) critProperties.py
test:
./runtest
clean:
./cleanup
# end of file

View file

@ -0,0 +1,15 @@
#!/bin/sh
run:
$(PYTHON_CMD) rxnpath1.py
test:
./runtest
clean:
./cleanup
# end of file

View file

@ -0,0 +1,17 @@
#!/bin/sh
all:
run:
$(PYTHON_CMD) combustor.py
test:
./runtest
clean:
./cleanup
# end of file

View file

@ -0,0 +1,16 @@
#!/bin/sh
all:
run:
$(PYTHON_CMD) dustygas.py
test:
./runtest
clean:
./cleanup
# end of file