-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
99 lines (87 loc) · 3.01 KB
/
Makefile
File metadata and controls
99 lines (87 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/make -f
# Portions of this file contributed by NIST are governed by the
# following statement:
#
# This software was developed at the National Institute of Standards
# and Technology by employees of the Federal Government in the course
# of their official duties. Pursuant to title 17 Section 105 of the
# United States Code this software is not subject to copyright
# protection and is in the public domain. NIST assumes no
# responsibility whatsoever for its use by other parties, and makes
# no guarantees, expressed or implied, about its quality,
# reliability, or any other characteristic.
#
# We would appreciate acknowledgement if the software is used.
SHELL := /bin/bash
top_srcdir := $(shell cd .. ; pwd)
uco_srcdir := $(top_srcdir)/dependencies/UCO
RDF_TOOLKIT_JAR := $(uco_srcdir)/lib/rdf-toolkit.jar
all: \
catalog-v001.xml
$(RDF_TOOLKIT_JAR):
@echo "DEBUG:dependencies/Makefile:top_srcdir=$(top_srcdir)" >&2
@echo "ERROR:dependencies/Makefile:rdf-toolkit.jar not found. Did you run `make` from the top source directory?" >&2
@test -r $@
catalog-v001.xml: \
$(top_srcdir)/.venv.done.log \
$(top_srcdir)/etc/domain_directories.tsv \
$(top_srcdir)/etc/dependency_files.tsv \
$(uco_srcdir)/src/create-catalog-v001.xml.py \
imports-transitive.ttl
rm -f _$@
source $(top_srcdir)/venv/bin/activate \
&& python3 $(uco_srcdir)/src/create-catalog-v001.xml.py \
_$@ \
$(top_srcdir)/etc/domain_directories.tsv \
$(top_srcdir)/etc/dependency_files.tsv \
"$(top_srcdir)" \
imports-transitive.ttl
mv _$@ $@
check: \
catalog-v001.xml
# TODO: This recipe deletes files generated by Make. The line deleting
# example.ttl should be adapted.
clean:
@rm -f \
catalog-v001.xml \
example.ttl \
imports-transitive.ttl
# TODO: Adapt this recipe to normalize a submodule's file, or downloaded
# file, in the same manner as CDO ontologies are normalized.
example.ttl: \
example/example.owl \
$(RDF_TOOLKIT_JAR) \
$(top_srcdir)/.venv.done.log
source $(top_srcdir)/venv/bin/activate \
&& pyshacl \
--shacl UCO/ontology/owl/owl.ttl \
$<
java -jar $(RDF_TOOLKIT_JAR) \
--inline-blank-nodes \
--source $< \
--source-format rdf-xml \
--target _$@ \
--target-format turtle
mv _$@ $@
# This recipe intentionally does not incorporate CDO ontologies (UCO,
# CASE, etc.), to avoid redundant imports between multiple profiles.
# TODO: Adapt this recipe to depend instead on the normalized file, as
# well as any profile submodules' imports-transitive files.
# Note that the piping command, analagous to the concatenate ('cat')
# command but for RDF graph files, will combine all recipe dependencies
# into one file, using the $^ ("all dependencies") Make variable.
imports-transitive.ttl: \
example.ttl
source $(top_srcdir)/venv/bin/activate \
&& rdfpipe \
--output-format turtle \
$^ \
> __$@
java -jar $(RDF_TOOLKIT_JAR) \
--inline-blank-nodes \
--source __$@ \
--source-format turtle \
--target _$@ \
--target-format turtle
rm __$@
mv _$@ $@