Skip to content

Commit

Permalink
Create mainGenerator10
Browse files Browse the repository at this point in the history
  • Loading branch information
fractasy committed May 23, 2024
1 parent e540c8e commit a2b6e1a
Show file tree
Hide file tree
Showing 3 changed files with 7,063 additions and 1,975 deletions.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
TARGET_ZKP := zkProver
TARGET_BCT := bctree
TARGET_MNG += mainGenerator
TARGET_MNG_10 += mainGenerator10
TARGET_PLG += polsGenerator
TARGET_PLD += polsDiff
TARGET_TEST := zkProverTest
Expand Down Expand Up @@ -101,8 +102,15 @@ $(BUILD_DIR)/$(TARGET_MNG): ./src/main_generator/main_generator.cpp ./src/config
$(MKDIR_P) $(BUILD_DIR)
g++ -g ./src/main_generator/main_generator.cpp -o $@ -lgmp

generate: main_generator
main_generator_10: $(BUILD_DIR)/$(TARGET_MNG_10)

$(BUILD_DIR)/$(TARGET_MNG_10): ./src/main_generator/main_generator_10.cpp ./src/config/definitions.hpp
$(MKDIR_P) $(BUILD_DIR)
g++ -g ./src/main_generator/main_generator_10.cpp -o $@ -lgmp

generate: main_generator main_generator_10
$(BUILD_DIR)/$(TARGET_MNG) all
$(BUILD_DIR)/$(TARGET_MNG_10) all

pols_generator: $(BUILD_DIR)/$(TARGET_PLG)

Expand Down
Loading

0 comments on commit a2b6e1a

Please sign in to comment.