Adding Makefile.win to examples
This commit is contained in:
parent
ac94b94e67
commit
7265f8fad2
3 changed files with 54 additions and 0 deletions
22
Cantera/python/examples/surface_chemistry/Makefile.win
Normal file
22
Cantera/python/examples/surface_chemistry/Makefile.win
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
all:
|
||||
cd catcomb_stagflow; make
|
||||
cd diamond_cvd; make
|
||||
|
||||
run:
|
||||
cd catcomb_stagflow; make run
|
||||
cd diamond_cvd; make run
|
||||
|
||||
test:
|
||||
cd catcomb_stagflow; make test
|
||||
cd diamond_cvd; make test
|
||||
|
||||
|
||||
clean:
|
||||
cd catcomb_stagflow; make clean
|
||||
cd diamond_cvd; make clean
|
||||
|
||||
# end of file
|
||||
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
all:
|
||||
|
||||
run:
|
||||
$(PYTHON_CMD) catcomb.py
|
||||
|
||||
test:
|
||||
./runtest
|
||||
|
||||
|
||||
clean:
|
||||
./cleanup
|
||||
|
||||
# end of file
|
||||
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
all:
|
||||
|
||||
run:
|
||||
$(PYTHON_CMD) diamond.py
|
||||
|
||||
test:
|
||||
./runtest
|
||||
|
||||
|
||||
clean:
|
||||
./cleanup
|
||||
|
||||
Loading…
Add table
Reference in a new issue