|
10 | 10 | # More information: https://github.com/INCATools/ontology-development-kit/ |
11 | 11 |
|
12 | 12 | # Fingerprint of the configuration file when this Makefile was last generated |
13 | | -CONFIG_HASH= f6b6373a03fd447b43afd97211c2e30d5767a0491b3c06e49e1d4a253d3dad81 |
| 13 | +CONFIG_HASH= 271e25fe84944489cd730d77d6260c3065fdef73b5172242dbebab08467f43f9 |
14 | 14 |
|
15 | 15 |
|
16 | 16 | # ---------------------------------------- |
@@ -188,7 +188,7 @@ all_main: $(MAIN_FILES) |
188 | 188 | # ---------------------------------------- |
189 | 189 |
|
190 | 190 |
|
191 | | -IMPORTS = pmdco logo tto |
| 191 | +IMPORTS = pmdco logo tto uo cryo qudt |
192 | 192 |
|
193 | 193 | IMPORT_ROOTS = $(patsubst %, $(IMPORTDIR)/%_import, $(IMPORTS)) |
194 | 194 | IMPORT_OWL_FILES = $(foreach n,$(IMPORT_ROOTS), $(n).owl) |
@@ -516,6 +516,27 @@ mirror-tto: | $(TMPDIR) |
516 | 516 | $(ROBOT) convert -I https://raw.githubusercontent.com/materialdigital/tensile-test-ontology/refs/heads/main/tto-base.owl -o $(TMPDIR)/$@.owl |
517 | 517 |
|
518 | 518 |
|
| 519 | +## ONTOLOGY: uo |
| 520 | +.PHONY: mirror-uo |
| 521 | +.PRECIOUS: $(MIRRORDIR)/uo.owl |
| 522 | +mirror-uo: | $(TMPDIR) |
| 523 | + $(ROBOT) convert -I https://raw.githubusercontent.com/bio-ontology-research-group/unit-ontology/refs/heads/master/uo-full.owl -o $(TMPDIR)/$@.owl |
| 524 | + |
| 525 | + |
| 526 | +## ONTOLOGY: cryo |
| 527 | +.PHONY: mirror-cryo |
| 528 | +.PRECIOUS: $(MIRRORDIR)/cryo.owl |
| 529 | +mirror-cryo: | $(TMPDIR) |
| 530 | + $(ROBOT) convert -I https://raw.githubusercontent.com/cmllezr/crystallography-subdomain-ontology/refs/heads/main/cryo-full.owl -o $(TMPDIR)/$@.owl |
| 531 | + |
| 532 | + |
| 533 | +## ONTOLOGY: qudt |
| 534 | +.PHONY: mirror-qudt |
| 535 | +.PRECIOUS: $(MIRRORDIR)/qudt.owl |
| 536 | +mirror-qudt: | $(TMPDIR) |
| 537 | + $(ROBOT) convert -I https://qudt.org/qudt-all -o $(TMPDIR)/$@.owl |
| 538 | + |
| 539 | + |
519 | 540 | $(MIRRORDIR)/%.owl: mirror-% | $(MIRRORDIR) |
520 | 541 | if [ -f $(TMPDIR)/mirror-$*.owl ]; then if cmp -s $(TMPDIR)/mirror-$*.owl $@ ; then echo "Mirror identical, ignoring."; else echo "Mirrors different, updating." &&\ |
521 | 542 | cp $(TMPDIR)/mirror-$*.owl $@; fi; fi |
|
0 commit comments