*** empty log message ***
This commit is contained in:
parent
db05f9fdd3
commit
1a6678a7b6
3 changed files with 14 additions and 2 deletions
|
|
@ -78,7 +78,6 @@ FTLIB = @buildlib@/$(LIB_NAME)
|
|||
$(FTLIB): $(MODFILES) $(USER_MODULE_OBJS) $(CXX_OBJS) $(LIB_DEPS)
|
||||
$(RM) $(FTLIB)
|
||||
@ARCHIVE@ $(FTLIB) $(OBJS)
|
||||
cp -f $(MODFILES) $(MODULE_DIR)
|
||||
|
||||
clean:
|
||||
$(RM) $(OBJS) $(FTLIB) $(MODFILES)
|
||||
|
|
|
|||
|
|
@ -116,7 +116,7 @@ hdr-install:
|
|||
|
||||
f90-modules-install:
|
||||
ifeq ($(build_f90),1)
|
||||
cp -f build/include/cantera/*.mod @ct_incroot@
|
||||
cp -f build/include/cantera/*.mod @ct_incroot@/cantera
|
||||
endif
|
||||
|
||||
# collect scattered header files and build the include directory
|
||||
|
|
@ -135,6 +135,9 @@ hdr-collect:
|
|||
@INSTALL@ Cantera/src/zeroD/*.h build/include/cantera/kernel/zeroD
|
||||
@INSTALL@ Cantera/src/converters/*.h build/include/cantera/kernel/converters
|
||||
@INSTALL@ Cantera/src/transport/*.h build/include/cantera/kernel/transport
|
||||
ifeq ($(build_f90),1)
|
||||
@INSTALL@ Cantera/fortran/src/*.mod build/include/cantera
|
||||
endif
|
||||
|
||||
particles:
|
||||
ifeq ($(build_particles),1)
|
||||
|
|
|
|||
|
|
@ -24,8 +24,17 @@ $INSTALL -d $RESDIR
|
|||
$INSTALL -d $NUMPYDIR/Numeric
|
||||
$INSTALL -d $NUMRESDIR
|
||||
|
||||
rm -r -f $CTDIR/*
|
||||
rm -r -f $PYDIR/*
|
||||
rm -r -f $RESDIR/*
|
||||
rm -r -f $NUMPYDIR/*
|
||||
rm -r -f $NUMRESDIR/*
|
||||
|
||||
cp -R -f $instdir/* $CTDIR
|
||||
chmod +x $CTDIR/bin/*
|
||||
rm -r -f $CTDIR/lib
|
||||
|
||||
cp -R -f $PKGDIR/apps/* $CTDIR
|
||||
|
||||
cp -R -f $pylibdir/Cantera/* $PYDIR/Cantera
|
||||
cp -R -f $pylibdir/MixMaster/* $PYDIR/MixMaster
|
||||
|
|
@ -38,3 +47,4 @@ cp -f @ctroot@/License.rtf $RESDIR
|
|||
|
||||
cp -R -f $pylibdir/Numeric/* $NUMPYDIR/Numeric
|
||||
cp -f $pylibdir/Numeric.pth $NUMPYDIR
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue