Skip to content

Commit

Permalink
Speedup examples/probability building process
Browse files Browse the repository at this point in the history
  • Loading branch information
binghe authored and mn200 committed Mar 21, 2024
1 parent f97f4ff commit e546764
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/probability/Holmakefile
Expand Up @@ -19,7 +19,8 @@ FULL_OBJPATHS = $(patsubst %,$(HOLDIR)/src/%.uo,$(OBJS)) \
all: $(HOLHEAP)

$(HOLHEAP): $(FULL_OBJPATHS) $(HOLDIR)/bin/hol.state
$(protect $(HOLDIR)/bin/buildheap) -o $@ $(FULL_OBJPATHS)
$(protect $(HOLDIR)/bin/buildheap) $(DEBUG_FLAG) -o $@ \
-b $(protect $(HOLDIR)/src/real/analysis/realheap) $(FULL_OBJPATHS)
endif

all: $(DEFAULT_TARGETS)
Expand Down
2 changes: 2 additions & 0 deletions examples/probability/legacy/Holmakefile
Expand Up @@ -3,6 +3,8 @@ INCLUDES = $(HOLDIR)/src/real $(HOLDIR)/src/res_quan/src $(HOLDIR)/src/real/anal

EXTRA_CLEANS = $(patsubst %Theory.uo,%Theory.html,$(DEFAULT_TARGETS))

HOLHEAP = $(protect $(HOLDIR)/src/real/analysis/realheap)

all: $(DEFAULT_TARGETS)

.PHONY: all

0 comments on commit e546764

Please sign in to comment.