summaryrefslogtreecommitdiff
path: root/src/third_party/timelib-2018.01/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/third_party/timelib-2018.01/Makefile')
-rw-r--r--src/third_party/timelib-2018.01/Makefile128
1 files changed, 128 insertions, 0 deletions
diff --git a/src/third_party/timelib-2018.01/Makefile b/src/third_party/timelib-2018.01/Makefile
new file mode 100644
index 00000000000..46b03b40d45
--- /dev/null
+++ b/src/third_party/timelib-2018.01/Makefile
@@ -0,0 +1,128 @@
+FLAGS=-O0 -ggdb3 \
+ -Wall -Werror -Wextra -fsanitize=undefined -fsanitize=address \
+ -Wmaybe-uninitialized -Wmissing-field-initializers -Wshadow -Wno-unused-parameter \
+ -pedantic -Wno-implicit-fallthrough \
+ -DHAVE_STDINT_H -DHAVE_STRING_H -DHAVE_GETTIMEOFDAY -DHAVE_UNISTD_H -DHAVE_DIRENT_H -I.# -DDEBUG_PARSER
+
+CFLAGS=-Wdeclaration-after-statement ${FLAGS}
+
+CPPFLAGS=${FLAGS}
+
+LDFLAGS=-lm -fsanitize=undefined -l:libubsan.so.1
+
+TEST_LDFLAGS=-lCppUTest
+
+CC=gcc-8
+MANUAL_TESTS=tests/tester-parse-interval \
+ tests/tester-parse-tz tests/tester-iso-week tests/test-abbr-to-id \
+ tests/enumerate-timezones tests/date_from_isodate
+AUTO_TESTS=tests/tester-parse-string tests/tester-parse-string-by-format \
+ tests/tester-create-ts tests/tester-render-ts tests/tester-render-ts-zoneinfo
+C_TESTS=tests/c/timelib_get_current_offset_test.cpp tests/c/timelib_decimal_hour.cpp \
+ tests/c/timelib_juliandate.cpp tests/c/issues.cpp tests/c/astro_rise_set_altitude.cpp \
+ tests/c/parse_date_from_format_test.cpp
+TEST_BINARIES=${MANUAL_TESTS} ${AUTO_TESTS}
+
+EXAMPLE_BINARIES=docs/date-from-iso-parts docs/date-from-parts docs/date-from-string \
+ docs/date-to-parts
+
+all: parse_date.o tm2unixtime.o unixtime2tm.o dow.o astro.o interval.o \
+ ${TEST_BINARIES} ${EXAMPLE_BINARIES} ctest
+
+parse_date.c: timezonemap.h parse_date.re
+ re2c -d -b parse_date.re > parse_date.c
+
+parse_iso_intervals.c: parse_iso_intervals.re
+ re2c -d -b parse_iso_intervals.re > parse_iso_intervals.c
+
+timelib.a: parse_iso_intervals.o parse_date.o unixtime2tm.o tm2unixtime.o dow.o parse_tz.o parse_zoneinfo.o timelib.o astro.o interval.o
+ ar -rc timelib.a parse_iso_intervals.o parse_date.o unixtime2tm.o tm2unixtime.o dow.o parse_tz.o parse_zoneinfo.o timelib.o astro.o interval.o
+
+tests/tester-diff: timelib.a tests/tester-diff.c
+ gcc $(CFLAGS) -o tests/tester-diff tests/tester-diff.c timelib.a $(LDFLAGS)
+
+tests/tester-parse-string: timelib.a tests/tester-parse-string.c
+ gcc $(CFLAGS) -o tests/tester-parse-string tests/tester-parse-string.c timelib.a $(LDFLAGS)
+
+tests/tester-parse-interval: timelib.a tests/tester-parse-interval.c
+ gcc $(CFLAGS) -o tests/tester-parse-interval tests/tester-parse-interval.c timelib.a $(LDFLAGS)
+
+tests/tester-parse-string-by-format: timelib.a tests/tester-parse-string-by-format.c
+ gcc $(CFLAGS) -o tests/tester-parse-string-by-format tests/tester-parse-string-by-format.c timelib.a $(LDFLAGS)
+
+tests/tester-create-ts: timelib.a tests/tester-create-ts.c
+ gcc $(CFLAGS) -o tests/tester-create-ts tests/tester-create-ts.c timelib.a $(LDFLAGS)
+
+tests/tester-parse-tz: timelib.a tests/test-tz-parser.c
+ gcc $(CFLAGS) -o tests/tester-parse-tz tests/test-tz-parser.c timelib.a $(LDFLAGS)
+
+tests/tester-render-ts: timelib.a tests/tester-render-ts.c
+ gcc $(CFLAGS) -o tests/tester-render-ts tests/tester-render-ts.c timelib.a $(LDFLAGS)
+
+tests/tester-render-ts-zoneinfo: timelib.a tests/tester-render-ts-zoneinfo.c
+ gcc $(CFLAGS) -o tests/tester-render-ts-zoneinfo tests/tester-render-ts-zoneinfo.c timelib.a $(LDFLAGS)
+
+tests/tester-iso-week: timelib.a tests/tester-iso-week.c
+ gcc $(CFLAGS) -o tests/tester-iso-week tests/tester-iso-week.c timelib.a $(LDFLAGS)
+
+tests/test-abbr-to-id: timelib.a tests/test-abbr-to-id.c
+ gcc $(CFLAGS) -o tests/test-abbr-to-id tests/test-abbr-to-id.c timelib.a $(LDFLAGS)
+
+tests/test-astro: timelib.a tests/test-astro.c
+ gcc $(CFLAGS) -o tests/test-astro tests/test-astro.c timelib.a -lm $(LDFLAGS)
+
+tests/enumerate-timezones: timelib.a tests/enumerate-timezones.c
+ gcc $(CFLAGS) -o tests/enumerate-timezones tests/enumerate-timezones.c timelib.a $(LDFLAGS)
+
+tests/date_from_isodate: timelib.a tests/date_from_isodate.c
+ gcc $(CFLAGS) -o tests/date_from_isodate tests/date_from_isodate.c timelib.a $(LDFLAGS)
+
+
+docs/date-from-parts: timelib.a docs/date-from-parts.c
+ gcc $(CFLAGS) -o docs/date-from-parts docs/date-from-parts.c timelib.a $(LDFLAGS)
+
+docs/date-from-iso-parts: timelib.a docs/date-from-iso-parts.c
+ gcc $(CFLAGS) -o docs/date-from-iso-parts docs/date-from-iso-parts.c timelib.a $(LDFLAGS)
+
+docs/date-from-string: timelib.a docs/date-from-string.c
+ gcc $(CFLAGS) -o docs/date-from-string docs/date-from-string.c timelib.a $(LDFLAGS)
+
+docs/date-to-parts: timelib.a docs/date-to-parts.c
+ gcc $(CFLAGS) -o docs/date-to-parts docs/date-to-parts.c timelib.a $(LDFLAGS)
+
+
+timezonemap.h: gettzmapping.php
+ echo Generating timezone mapping file.
+ php gettzmapping.php > timezonemap.h
+
+clean-all: clean
+ rm -f timezonemap.h
+
+clean:
+ rm -f parse_iso_intervals.c parse_date.c *.o timelib.a ${TEST_BINARIES}
+
+ctest: tests/c/all_tests.cpp timelib.a ${C_TESTS}
+ g++ $(CPPFLAGS) $(LDFLAGS) tests/c/all_tests.cpp ${C_TESTS} timelib.a $(TEST_LDFLAGS) -o ctest
+
+test: ctest tests/tester-parse-string tests/tester-create-ts tests/tester-render-ts tests/tester-render-ts-zoneinfo tests/tester-parse-string-by-format
+ -@php tests/test_all.php
+ @echo Running C tests
+ @./ctest -c
+
+test-parse-string: tests/tester-parse-string
+ @for i in tests/files/*.parse; do echo $$i; php tests/test_parser.php $$i; echo; done
+
+test-parse-format: tests/tester-parse-string-by-format
+ @for i in tests/files/*.parseformat; do echo $$i; php tests/test_parse_format.php $$i; echo; done
+
+test-create-ts: tests/tester-create-ts
+ @for i in tests/files/*.ts; do echo $$i; php tests/test_create.php $$i; echo; done
+
+test-render-ts: tests/tester-render-ts
+ @for i in tests/files/*.render; do echo $$i; php tests/test_render.php $$i; echo; done
+
+test-render-ts-zoneinfo: tests/tester-render-ts-zoneinfo
+ @for i in tests/files/*.render; do echo $$i; php tests/test_render.php $$i; echo; done
+
+package: clean
+ tar -cvzf parse_date.tar.gz parse_date.re Makefile tests