Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes to opentheory build #1304

Merged
merged 1 commit into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
10 changes: 5 additions & 5 deletions src/ring/src/Holmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ all: $(DEFAULT_TARGETS) selftest.exe

ifeq ($(KERNELID),otknl)
ARTFILES = $(patsubst %Script.sml,%.ot.art,$(wildcard *Script.sml))
all: $(ARTFILES) hol4-ring.art
all: $(ARTFILES) hol4-eval-ring.art

EVAL_ring.art: EVAL_ring.otd
EVAL_semi_ring.art: EVAL_semi_ring.otd
EVAL_semiring.art: EVAL_semiring.otd
EVAL_quote.art: EVAL_quote.otd
EVAL_canonical.art: EVAL_canonical.otd
EVAL_ringNorm.art: EVAL_ringNorm.otd

hol4-ring-unint.art: hol4-eval-ring-unint.thy $(ARTFILES)
hol4-eval-ring-unint.art: hol4-eval-ring-unint.thy $(ARTFILES)
opentheory info --article -o $@ $<

hol4-ring.art: hol4-eval-ring.thy hol4-eval-ring-unint.art ../../opentheory/hol4.int
hol4-eval-ring.art: hol4-eval-ring.thy hol4-eval-ring-unint.art ../../opentheory/hol4.int
opentheory info --article -o $@ $<

install: hol4-ring.thy hol4-ring.art
install: hol4-eval-ring.thy hol4-eval-ring.art
opentheory install --reinstall $<
endif

Expand Down