-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpostvisit.mk
More file actions
55 lines (45 loc) · 1.71 KB
/
Copy pathpostvisit.mk
File metadata and controls
55 lines (45 loc) · 1.71 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
#!/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 within the United States. 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)
bfo_ttl := $(top_srcdir)/dependencies/CDO-Shapes-BFO/dependencies/BFO.ttl
sh_bfo_ttl := $(top_srcdir)/dependencies/CDO-Shapes-BFO/shapes/sh-bfo.ttl
gufo_ttl := $(top_srcdir)/dependencies/CDO-Shapes-gufo/dependencies/gufo.ttl
sh_gufo_ttl := $(top_srcdir)/dependencies/CDO-Shapes-gufo/shapes/sh-gufo.ttl
time_ttl := $(top_srcdir)/dependencies/CDO-Shapes-Time/dependencies/time.ttl
sh_time_ttl := $(top_srcdir)/dependencies/CDO-Shapes-Time/shapes/sh-time.ttl
all:
.cdo-shapes.done.log: \
$(bfo_ttl) \
$(gufo_ttl) \
$(sh_bfo_ttl) \
$(sh_gufo_ttl) \
$(sh_time_ttl) \
$(time_ttl) \
$(top_srcdir)/.venv.done.log \
existence_intervals.json
source $(top_srcdir)/venv/bin/activate \
&& case_validate \
--ontology-graph $(bfo_ttl) \
--ontology-graph $(gufo_ttl) \
--ontology-graph $(sh_bfo_ttl) \
--ontology-graph $(sh_gufo_ttl) \
--ontology-graph $(sh_time_ttl) \
--ontology-graph $(time_ttl) \
existence_intervals.json
touch $@
check: \
.cdo-shapes.done.log
clean: