Adding Makefile.win to examples

This commit is contained in:
Harry Moffat 2009-07-17 19:18:52 +00:00
parent ac94b94e67
commit 7265f8fad2
3 changed files with 54 additions and 0 deletions

View 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

View file

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

View file

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