summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2022-10-10 14:31:51 +0200
committerJaron Kent-Dobias <jaron@kent-dobias.com>2022-10-10 14:31:51 +0200
commitb2451666ef1aec1aadc7bb54458f04542b4b7ccb (patch)
tree3eb28d20fc537041352d9327ad414b5c34ec9e43 /Makefile
parent4824391250150840717c1609c99ff8c234c76665 (diff)
downloadcode-b2451666ef1aec1aadc7bb54458f04542b4b7ccb.tar.gz
code-b2451666ef1aec1aadc7bb54458f04542b4b7ccb.tar.bz2
code-b2451666ef1aec1aadc7bb54458f04542b4b7ccb.zip
Started implementation of Propp algorithm.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 84be93f..33c8b6c 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,10 @@ CXX = clang++
LD = ld.lld
LIBS := -lrt
-all: excitation order
+all: excitation order uniform
+
+uniform: uniform.cpp $(BLOSSOM_DIR)/blossom5.o
+ $(CXX) $(CFLAGS) $(BLOSSOM_DIR)/blossom5.o uniform.cpp -o $@
order: order.cpp $(BLOSSOM_DIR)/blossom5.o
$(CXX) $(CFLAGS) $(BLOSSOM_DIR)/blossom5.o order.cpp -o $@