aboutsummaryrefslogtreecommitdiff
path: root/finance/chiapos/files/Hellman-Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'finance/chiapos/files/Hellman-Makefile')
-rw-r--r--finance/chiapos/files/Hellman-Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/finance/chiapos/files/Hellman-Makefile b/finance/chiapos/files/Hellman-Makefile
new file mode 100644
index 000000000000..e44416fad87f
--- /dev/null
+++ b/finance/chiapos/files/Hellman-Makefile
@@ -0,0 +1,14 @@
+all: HellmanAttacks
+
+OBJ = aes.o bits.o calculate_bucket.o cxxopts.o encoding.o hellman.o picosha2.o plotter_disk.o pos_constants.o prover_disk.o sort_on_disk.o util.o verifier.o
+
+.SUFFIXES:.hpp .o
+
+.hpp.o:
+ $(CC) -c $(CXXFLAGS) $(DFLAGS) $(INCLUDES) $< -o $@
+
+HellmanAttacks: ${OBJ}
+ ${CC} -o HellmanAttacks ${OBJ}
+
+clean:
+ rm -f HellmanAttacks ${OBJ}