diff --git a/Cantera/cxx/demos/Makefile.win b/Cantera/cxx/demos/Makefile.win new file mode 100644 index 000000000..87886848d --- /dev/null +++ b/Cantera/cxx/demos/Makefile.win @@ -0,0 +1,22 @@ +############################################################################ +# +# Makefile to run vc++ test programs under cygwin +# on the pc +# +############################################################################# + +all: + +test: + cd combustor; make -s test + cd kinetics1; make -s test + cd flamespeed; make -s test + cd NASA_coeffs; make -s test + +clean: + cd combustor; make clean + cd kinetics1; make clean + cd flamespeed; make clean + cd NASA_coeffs; make clean + + diff --git a/Cantera/cxx/demos/NASA_coeffs/Makefile.win b/Cantera/cxx/demos/NASA_coeffs/Makefile.win new file mode 100644 index 000000000..a81fabbc5 --- /dev/null +++ b/Cantera/cxx/demos/NASA_coeffs/Makefile.win @@ -0,0 +1,23 @@ +#!/bin/sh + +############################################################################ +# +# Makefile to compile and link a C++ application to +# Cantera. +# +PROG_NAME=NASA_coeffs +EXE_EXT=.exe + +# Program Name +PROGRAM = $(PROG_NAME)$(EXE_EXT) + + +# Do the test -> For the windows vc++ environment, we have to skip checking on +# whether the program is uptodate, because we don't utilize make +# in that environment to build programs. +test: + ./runtest + +clean: + $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends + diff --git a/Cantera/cxx/demos/combustor/Makefile.win b/Cantera/cxx/demos/combustor/Makefile.win new file mode 100644 index 000000000..8c71c8e0e --- /dev/null +++ b/Cantera/cxx/demos/combustor/Makefile.win @@ -0,0 +1,23 @@ +#!/bin/sh + +############################################################################ +# +# Makefile to compile and link a C++ application to +# Cantera. +# +PROG_NAME=combustor +EXE_EXT=.exe + +# Program Name +PROGRAM = $(PROG_NAME)$(EXE_EXT) + + +# Do the test -> For the windows vc++ environment, we have to skip checking on +# whether the program is uptodate, because we don't utilize make +# in that environment to build programs. +test: + ./runtest + +clean: + $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends + diff --git a/Cantera/cxx/demos/flamespeed/Makefile.win b/Cantera/cxx/demos/flamespeed/Makefile.win new file mode 100644 index 000000000..8409fdd32 --- /dev/null +++ b/Cantera/cxx/demos/flamespeed/Makefile.win @@ -0,0 +1,23 @@ +#!/bin/sh + +############################################################################ +# +# Makefile to compile and link a C++ application to +# Cantera. +# +PROG_NAME=flamespeed +EXE_EXT=.exe + +# Program Name +PROGRAM = $(PROG_NAME)$(EXE_EXT) + + +# Do the test -> For the windows vc++ environment, we have to skip checking on +# whether the program is uptodate, because we don't utilize make +# in that environment to build programs. +test: + ./runtest + +clean: + $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends + diff --git a/Cantera/cxx/demos/kinetics1/Makefile.win b/Cantera/cxx/demos/kinetics1/Makefile.win new file mode 100644 index 000000000..bdb1191d1 --- /dev/null +++ b/Cantera/cxx/demos/kinetics1/Makefile.win @@ -0,0 +1,23 @@ +#!/bin/sh + +############################################################################ +# +# Makefile to compile and link a C++ application to +# Cantera. +# +PROG_NAME=kinetics1 +EXE_EXT=.exe + +# Program Name +PROGRAM = $(PROG_NAME)$(EXE_EXT) + + +# Do the test -> For the windows vc++ environment, we have to skip checking on +# whether the program is uptodate, because we don't utilize make +# in that environment to build programs. +test: + ./runtest + +clean: + $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends + diff --git a/Cantera/cxx/demos/rankine/Makefile.win b/Cantera/cxx/demos/rankine/Makefile.win new file mode 100644 index 000000000..32f5cee69 --- /dev/null +++ b/Cantera/cxx/demos/rankine/Makefile.win @@ -0,0 +1,23 @@ +#!/bin/sh + +############################################################################ +# +# Makefile to compile and link a C++ application to +# Cantera. +# +PROG_NAME=rankine +EXE_EXT=.exe + +# Program Name +PROGRAM = $(PROG_NAME)$(EXE_EXT) + + +# Do the test -> For the windows vc++ environment, we have to skip checking on +# whether the program is uptodate, because we don't utilize make +# in that environment to build programs. +test: + ./runtest + +clean: + $(RM) $(OBJS) *.o $(PROGRAM) $(DEPENDS) .depends +