-
Notifications
You must be signed in to change notification settings - Fork 8
/
Makefile
215 lines (187 loc) · 9.86 KB
/
Makefile
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
# Common scenario variables of the GPR files:
#
# VSS_BUILD_PROFILE | BUILD_PROFILE = release | validation | development
#
# VSS_COVERAGE_MODE | COVERAGE_MODE = none | gcov
#
# VSS_CI_MODE | CI_MODE = none | on
#
# ADAFLAGS = ...
# GPRFLAGS = ...
GPRBUILD_FLAGS = -p -j0 $(GPRFLAGS)
PREFIX ?= /usr
GPRDIR ?= $(PREFIX)/share/gpr
LIBDIR ?= $(PREFIX)/lib
BINDIR ?= $(PREFIX)/bin
INSTALL_PROJECT_DIR ?= $(DESTDIR)$(GPRDIR)
INSTALL_INCLUDE_DIR ?= $(DESTDIR)$(PREFIX)/include/vss/$*
INSTALL_EXEC_DIR ?= $(DESTDIR)$(BINDIR)
INSTALL_LIBRARY_DIR ?= $(DESTDIR)$(LIBDIR)
INSTALL_ALI_DIR ?= $(INSTALL_LIBRARY_DIR)/vss/$*
GPRINSTALL_FLAGS = $(GPRFLAGS) \
-XVSS_LIBRARY_TYPE=$* \
--build-name=$* --build-var=LIBRARY_TYPE --build-var=VSS_LIBRARY_TYPE \
--prefix=$(PREFIX) --exec-subdir=$(INSTALL_EXEC_DIR) \
--lib-subdir=$(INSTALL_ALI_DIR) --project-subdir=$(INSTALL_PROJECT_DIR) \
--link-lib-subdir=$(INSTALL_LIBRARY_DIR) --sources-subdir=$(INSTALL_INCLUDE_DIR)
OK_RE_TESTS := 614 # Number of re_tests to be passed
ifeq ($(OS),Windows_NT)
VSS_PS=;
else
VSS_PS=:
endif
.PHONY: docs
.NOTPARALLEL:
all: build-libs-relocatable
build-all-libs: build-libs-relocatable build-libs-static build-libs-static-pic
build-libs-%:
gprbuild -XVSS_LIBRARY_TYPE=$* $(GPRBUILD_FLAGS) gnat/vss_gnat.gpr
gprbuild -XVSS_LIBRARY_TYPE=$* $(GPRBUILD_FLAGS) gnat/vss_text.gpr
gprbuild -XVSS_LIBRARY_TYPE=$* $(GPRBUILD_FLAGS) gnat/vss_json.gpr
gprbuild -XVSS_LIBRARY_TYPE=$* $(GPRBUILD_FLAGS) gnat/vss_regexp.gpr
gprbuild -XVSS_LIBRARY_TYPE=$* $(GPRBUILD_FLAGS) gnat/vss_xml.gpr
gprbuild -XVSS_LIBRARY_TYPE=$* $(GPRBUILD_FLAGS) gnat/vss_xml_templates.gpr
gprbuild -XVSS_LIBRARY_TYPE=$* -XXMLADA_BUILD=$* $(GPRBUILD_FLAGS) gnat/vss_xml_xmlada.gpr
generate:
gprbuild $(GPRBUILD_FLAGS) gnat/tools/gen_ucd.gpr
.objs/tools/gen_ucd data/ucd .objs/ucd.ada
rm -f source/text/ucd/*.ad[sb]
gnatchop -gnat2022 .objs/ucd.ada source/text/ucd
build_tests:
gprbuild -XVSS_LIBRARY_TYPE=static $(GPRBUILD_FLAGS) gnat/tests/vss_text_tests.gpr
gprbuild -XVSS_LIBRARY_TYPE=static $(GPRBUILD_FLAGS) gnat/tests/vss_os_tests.gpr
gprbuild -XVSS_LIBRARY_TYPE=static $(GPRBUILD_FLAGS) gnat/tests/vss_json_tests.gpr
gprbuild -XVSS_LIBRARY_TYPE=static $(GPRBUILD_FLAGS) gnat/tests/vss_stream_tests.gpr
gprbuild -XVSS_LIBRARY_TYPE=static $(GPRBUILD_FLAGS) gnat/tests/vss_regexp_tests.gpr
gprbuild -XVSS_LIBRARY_TYPE=static -XXMLADA_BUILD=static $(GPRBUILD_FLAGS) gnat/tests/vss_html_tests.gpr
check: build_tests check_text check_json check_regexp check_html
check_text:
.objs/tests/test_characters data/ucd
.objs/tests/test_character_iterators
.objs/tests/test_character_markers
.objs/tests/test_converters
.objs/tests/test_grapheme_cluster_iterators data/ucd data/emoji
.objs/tests/test_line_iterators
.objs/tests/test_stream_element_vector
.objs/tests/test_text_streams
.objs/tests/test_file_text_streams testsuite/stream/test_file_text_stream/vss.197.in.txt /tmp/vss.197.out.txt && diff -u --strip-trailing-cr /tmp/vss.197.out.txt testsuite/stream/test_file_text_stream/vss.197.out.txt
.objs/tests/test_string_append
.objs/tests/test_string_compare
.objs/tests/test_string_conversions
.objs/tests/test_string_delete
.objs/tests/test_string_hash
.objs/tests/test_string_insert
.objs/tests/test_string_buffer
.objs/tests/test_string_split
.objs/tests/test_string_split_lines
.objs/tests/test_string
.objs/tests/test_string_template
.objs/tests/test_string_vector
.objs/tests/test_transformer data/ucd testsuite/text/w3c-i18n-tests-casing/*.txt
.objs/tests/test_word_iterators data/ucd
.objs/tests/test_standard_paths
ifeq ($(OS),Windows_NT)
cmd.exe \/c "testsuite\\run_test_application_arguments.bat"
else
.objs/tests/test_application_arguments hello привет გამარჯობა 👋
endif
VSS_ENV1="A$(VSS_PS)B$(VSS_PS)C" .objs/tests/test_environment
.objs/tests/test_command_line_parser
.objs/tests/test_string_decoder iso-8859-1 false testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88591-utf8.txt
.objs/tests/test_string_decoder iso-8859-2 false testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88592-utf8.txt
.objs/tests/test_string_decoder iso-8859-5 false testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88595-utf8.txt
.objs/tests/test_string_decoder iso-8859-6 true testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88596-utf8.txt
.objs/tests/test_string_decoder iso-8859-7 true testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88597-utf8.txt
.objs/tests/test_string_decoder iso-8859-8 true testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88598-utf8.txt
.objs/tests/test_string_decoder iso-8859-9 false testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso88599-utf8.txt
.objs/tests/test_string_decoder iso-8859-15 false testsuite/text/converters/all_bytes.bin testsuite/text/converters/iso885915-utf8.txt
.objs/tests/test_string_decoder koi8-r false testsuite/text/converters/all_bytes.bin testsuite/text/converters/koi8r-utf8.txt
.objs/tests/test_string_decoder EUC-JP false testsuite/text/converters/eucjp_chars.eucjp testsuite/text/converters/eucjp_chars-utf8.txt
.objs/tests/test_string_decoder shift-jis false testsuite/text/converters/sjis_chars.sjis testsuite/text/converters/sjis_chars-utf8.txt
check_json:
.objs/tests/test_json_content_handler
.objs/tests/test_json_buffered_pull_reader
.objs/tests/test_json_decimal_to_number /dev/null data/parse-number-fxx-test-data/data/*.txt
rm -f .objs/tests/.fails
for f in `find data/json5-tests -name '*.json'` \
`find data/json5-tests -name '*.json5'` \
`find data/json5-tests -name '*.js'` \
`find data/json5-tests -name '*.txt'` \
testsuite/json/JSONTestSuite/test_parsing/*.json \
testsuite/json/JSON_checker/test/*.json; \
do echo -n "`basename $$f` (JSON): "; \
testsuite/run_json_reader_test $$f || touch .objs/tests/.fails; \
echo -n "`basename $$f` (JSON5): "; \
testsuite/run_json_reader_test $$f --json5 || touch .objs/tests/.fails; \
done
test ! -e .objs/tests/.fails
.objs/tests/test_json_writer testsuite/json/test_json_writer.expected
check_regexp:
.objs/tests/test_regexp
.objs/tests/test_regexp_re_tests $(OK_RE_TESTS) < data/re_tests
check_html:
rm -f .objs/tests/.fails
for f in testsuite/html/test_data/*.xhtml; do \
echo -n "$$f: "; if .objs/tests/test_html_writer $$f 1>.objs/out 2>.objs/err; (cat .objs/out; sed 's/.*[\/\\]\(.*:\)/\1/' .objs/err) | diff --strip-trailing-cr -u -- $${f%xhtml}out - ; then echo "PASS"; else echo "FAIL"; touch .objs/tests/.fails; fi ; \
done
test ! -e .objs/tests/.fails
check_install:
echo 'with "vss_text.gpr";' > example.gpr
echo 'with "vss_json.gpr";' >> example.gpr
echo 'with "vss_regexp.gpr";' >> example.gpr
echo 'project Example is' >> example.gpr
echo ' for Main use ("example.adb");' >> example.gpr
echo ' package Compiler is' >> example.gpr
echo ' for Switches ("Ada") use ("-gnat2022");' >> example.gpr
echo ' end Compiler;' >> example.gpr
echo 'end Example;' >> example.gpr
echo 'with VSS.Strings;' > example.adb
echo 'with VSS.JSON;' >> example.adb
echo 'with VSS.Regular_Expressions;' >> example.adb
echo 'procedure Example is' >> example.adb
echo 'begin null; end;' >> example.adb
gprbuild -aP $(INSTALL_PROJECT_DIR) -P example.gpr
gprclean -aP $(INSTALL_PROJECT_DIR) -P example.gpr
rm -f example.*
coverage:
find .objs/ -name *.o | xargs -s 512 gcov || true
docs:
make -C docs
clean:
rm -rf .objs .libs
install: install-libs-relocatable
install-all-libs: install-libs-static install-libs-static-pic install-libs-relocatable
install-libs-%:
gprinstall $(GPRINSTALL_FLAGS)/gnat -f -p -P gnat/vss_gnat.gpr --install-name=vss_gnat
gprinstall $(GPRINSTALL_FLAGS)/text -f -p -P gnat/vss_text.gpr --install-name=vss_text
gprinstall $(GPRINSTALL_FLAGS)/json -f -p -P gnat/vss_json.gpr --install-name=vss_json
gprinstall $(GPRINSTALL_FLAGS)/regexp -f -p -P gnat/vss_regexp.gpr --install-name=vss_regexp
gprinstall $(GPRINSTALL_FLAGS)/xml -f -p -P gnat/vss_xml.gpr --install-name=vss_xml
gprinstall $(GPRINSTALL_FLAGS)/xml_templates -f -p -P gnat/vss_xml_templates.gpr --install-name=vss_xml_templates
gprinstall -XXMLADA_BUILD=$* $(GPRINSTALL_FLAGS)/xml_xmlada -f -p -P gnat/vss_xml_xmlada.gpr --install-name=vss_xml_xmlada
misc: # Check compilation of other projects
gprbuild $(GPRBUILD_FLAGS) -aPgnat gnat/tools/json_schema.gpr
gprbuild $(GPRBUILD_FLAGS) -aPgnat examples/regexp/grep.gpr
gprbuild $(GPRBUILD_FLAGS) -aPgnat examples/blogs/json_1/blog_1.gpr
gprbuild $(GPRBUILD_FLAGS) -aPgnat examples/command_line/command/command_line_command.gpr
spellcheck:
@STATUS=0; \
for J in source/*/*.ads; do \
sed -e 's/#[^#]*#//g' -e "s/'\([A-Z]\)/ \1/g" $$J | \
aspell list --lang=en --home-dir=./data/ --ignore-case > /tmp/spell.txt; \
if [ -s /tmp/spell.txt ] ; then \
echo "\n$$J:"; sort -u -f /tmp/spell.txt; STATUS=1; \
fi \
done; \
if [ $$STATUS != 0 ] ; then \
echo "\n\nFIX SPELLING or append exceptions to data/.aspell.en.pws !!!" ; \
exit 1 ; \
fi
spellcheck_json:
for J in source/*/*.ads; do \
sed -e 's/#[^#]*#//g' -e "s/'\([A-Z]\)/ \1/g" $$J | \
aspell list --lang=en --home-dir=./data/ --ignore-case > /tmp/spell.txt; \
if [ -s /tmp/spell.txt ] ; then \
sort -u -f /tmp/spell.txt | jq -R --arg file "$$J" '{description: "Wrong spelling: \(.)", fingerprint: ., severity: "major", location: {path: $$file, lines: {begin: 1} }}' ; \
fi \
done | jq -s 'reduce inputs as $$in (.; . + $$in)' > spellcheck.json