Added initial MolSSI Driver interface

This commit is contained in:
Taylor Barnes
2018-05-14 14:03:28 -04:00
committed by taylor-a-barnes
parent 058d56cf5c
commit b21479e20a
18 changed files with 2027 additions and 11 deletions

18
lib/mdi/Makefile.gcc Normal file
View File

@ -0,0 +1,18 @@
SHELL = /bin/sh
# which file will be copied to Makefile.lammps
EXTRAMAKE = Makefile.lammps.empty
# ------ MAKE PROCEDURE ------
lib: $(OBJ)
mkdir -p build
cd build; cmake -Dlibtype=SHARED -Dlanguage=C -D CMAKE_C_COMPILER=gcc ../MDI_Library; make
@cp $(EXTRAMAKE) Makefile.lammps
# ------ CLEAN ------
clean:
-rm *.o *.h $(LIB)
-rm -r build