Skip to content

Commit

Permalink
Fix omitted dependency information in some Holmakefiles
Browse files Browse the repository at this point in the history
Concurrent builds where stuff may or may not get linked to sigobj can
mask a failure to explicitly depend on appropriate directories.
  • Loading branch information
mn200 committed Oct 25, 2023
1 parent 871cc06 commit b0bf71b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/n-bit/interactive_tests/Holmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ INCLUDES = ..

all: test1 $(DEFAULT_TARGETS)

test1: script1.ML
test1: script1.ML ../wordsTheory.uo
$(protect $(HOLDIR)/bin/hol) $<


Expand Down
2 changes: 1 addition & 1 deletion src/quotient/examples/lambda/Holmakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
INCLUDES = .. ../../../string
INCLUDES = .. ../../../string ../../../res_quan/src

EXTRA_CLEANS = $(patsubst %,%.lst,alpha beta eta lift reduction term variable)
2 changes: 1 addition & 1 deletion src/quotient/examples/sigma/Holmakefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
INCLUDES = .. ../../../string
INCLUDES = .. ../../../string ../../../res_quan/src

EXTRA_CLEANS = variable.lst

0 comments on commit b0bf71b

Please sign in to comment.