cantera/Cantera/cxx/demos/NASA_coeffs/Makefile.win
2009-07-21 16:56:46 +00:00

23 lines
535 B
Bash

#!/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