Use relative path if the Cantera install directory contains spaces, as the Makefile 'include' statement doesn't seem to have a way to escape the space otherwise.
21 lines
303 B
Makefile
21 lines
303 B
Makefile
include @tmpl_Cantera_dot_mak@
|
|
|
|
FC=@F77@
|
|
RM=rm -f
|
|
FFLAGS=-g
|
|
LDFLAGS=
|
|
LDLIBS=$(CANTERA_FORTRAN_LIBS)
|
|
CPPFLAGS=$(CANTERA_INCLUDES)
|
|
|
|
OBJS=isentropic.o demo_ftnlib.o
|
|
|
|
all: isentropic
|
|
|
|
isentropic: $(OBJS)
|
|
$(F77) $(LDFLAGS) -o isentropic $(OBJS) $(LDLIBS)
|
|
|
|
clean:
|
|
$(RM) $(OBJS)
|
|
|
|
dist-clean: clean
|
|
$(RM) *~
|