You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This removes a circular submodule dependency, but also removes a concept
typo-check function. Long-term resolution is left for discusion at
Issue 40.
References:
* #40
Signed-off-by: Alex Nelson <alexander.nelson@nist.gov>
COMM ?= $(shell which gcomm 2>/dev/null || which comm)
27
-
ifeq ($(COMM),)
28
-
$(error comm not found)
29
-
endif
30
-
31
-
SORT ?= $(shell which gsort 2>/dev/null || which sort)
32
-
ifeq ($(SORT),)
33
-
$(error sort not found)
34
-
endif
35
-
36
24
all: \
37
25
kb.json \
38
26
sample.txt.json \
39
-
sample.txt-nocompact.json \
40
-
undefined_vocabulary.txt
27
+
sample.txt-nocompact.json
41
28
42
29
check: \
43
30
kb.json \
44
31
kb_validation.ttl \
45
32
sample.txt.json \
46
-
sample.txt-nocompact.json \
47
-
undefined_vocabulary.txt
48
-
test ! -s undefined_vocabulary.txt \
49
-
|| (echo "ERROR:tests/case_file/Makefile:The output in kb.json has undefined CASE or UCO terms. The first few are:" >&2 && head undefined_vocabulary.txt >&2 && exit 1)
0 commit comments