Skip to content

Instantly share code, notes, and snippets.

@capoferro
Created October 1, 2014 04:44
Show Gist options
  • Save capoferro/5b160d09bcb8070edb10 to your computer and use it in GitHub Desktop.
Save capoferro/5b160d09bcb8070edb10 to your computer and use it in GitHub Desktop.
jdftx_path:=/home/josiah/Adventures/JDFTx
outfiles:=whist.oct whistSpherical.oct whistEnergyMomentum.oct filmPlasmonDecay-run plasmonDecayMetropolis-run
.PHONY: all
all: ${outfiles}
.PHONY: clean
clean:
rm -rf ${outfiles}
whist.oct: whist.cpp
mkoctfile whist.cpp -lgomp
whistSpherical.oct: whistSpherical.cpp
mkoctfile whistSpherical.cpp -I${jdftx_path} -lgomp
whistEnergyMomentum.oct: whistEnergyMomentum.cpp
mkoctfile whistEnergyMomentum.cpp -I${jdftx_path} -lcblas
filmPlasmonDecay-run: filmPlasmonDecay-run.cpp
mpicxx -o filmPlasmonDecay-run filmPlasmonDecay-run.cpp
plasmonDecayMetropolis-run: plasmonDecayMetropolis-run.cpp
mpicxx -o plasmonDecayMetropolis-run plasmonDecayMetropolis-run.cpp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment