diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2022-10-10 22:55:24 +0200 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2022-10-10 22:55:24 +0200 |
commit | 766988cd11eda0d62689e6c4adc021a3d2d4f567 (patch) | |
tree | 80b961b6ca1bc68a4b30ae486267df79db321f55 /Makefile | |
parent | 122c2b4aa525df69a2e95d47e9b1202e02fc4301 (diff) | |
download | code-766988cd11eda0d62689e6c4adc021a3d2d4f567.tar.gz code-766988cd11eda0d62689e6c4adc021a3d2d4f567.tar.bz2 code-766988cd11eda0d62689e6c4adc021a3d2d4f567.zip |
Added free energy calculation, and fixed some small mistakes in the library.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -9,7 +9,10 @@ CXX = clang++ LD = ld.lld
LIBS := -lrt
-all: excitation order uniform
+all: excitation order uniform free_energy
+
+free_energy: free_energy.cpp $(BLOSSOM_DIR)/blossom5.o rbmp.hpp
+ $(CXX) $(CFLAGS) $(BLOSSOM_DIR)/blossom5.o free_energy.cpp -o $@
uniform: uniform.cpp $(BLOSSOM_DIR)/blossom5.o rbmp.hpp
$(CXX) $(CFLAGS) $(BLOSSOM_DIR)/blossom5.o uniform.cpp -o $@
|