-
-
Notifications
You must be signed in to change notification settings - Fork 67
/
Makefile
158 lines (118 loc) · 5.75 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
FLAGS=-O0 -ggdb3 \
-fPIC \
-Wall -Werror -Wextra \
-Wempty-body \
-Wenum-compare \
-Wformat-nonliteral \
-Wformat-security \
-Wimplicit-fallthrough \
-Winit-self \
-Wlogical-not-parentheses \
-Wlogical-op \
-Wmaybe-uninitialized \
-Wmissing-field-initializers \
-Wmissing-format-attribute \
-Wno-unused-parameter \
-Wparentheses \
-Wpointer-arith \
-Wshadow \
-Wsign-compare \
-Wsizeof-array-argument \
-Wundef \
-Wunused-but-set-variable \
-Wvariadic-macros \
-Wwrite-strings \
-fdiagnostics-show-option \
-fno-exceptions \
-fno-omit-frame-pointer \
-fno-optimize-sibling-calls \
-fstack-protector \
-pedantic \
-DHAVE_GETTIMEOFDAY -DHAVE_UNISTD_H -DHAVE_DIRENT_H -I.# -DDEBUG_PARSER
CFLAGS_BASE=-Wdeclaration-after-statement ${FLAGS}
CFLAGS=-fsanitize=address -fsanitize=undefined ${CFLAGS_BASE}
CPPFLAGS=-fsanitize=address -fsanitize=undefined ${FLAGS}
LDFLAGS_BASE=-lm
LDFLAGS=${LDFLAGS_BASE} -fsanitize=undefined -l:libubsan.so
TEST_LDFLAGS=-lCppUTest
CC=gcc
CXX=g++
FILES=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 parse_posix.o
MANUAL_TESTS=tests/tester-parse-interval \
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.o tests/c/timelib_decimal_hour.o \
tests/c/timelib_juliandate.o \
tests/c/issues.o tests/c/issue0120.o \
tests/c/astro_rise_set_altitude.o \
tests/c/parse_date_from_format_test.o tests/c/parse_intervals.o \
tests/c/warn_on_slim.o tests/c/parse_posix.o tests/c/transitions.o \
tests/c/parse_tz.o tests/c/render.o tests/c/create_ts_from_string.o \
tests/c/parse_date.o tests/c/php-rfc.o tests/c/diff.o tests/c/interval.o \
tests/c/timezones_same.o tests/c/diff_days.o \
tests/c/timelib_hmsf_to_decimal_hour.o tests/c/dow.o \
tests/c/timelib_get_offset_info_test.o tests/c/add.o tests/c/sub.o
TEST_BINARIES=${MANUAL_TESTS} ${AUTO_TESTS} ctest
EXAMPLE_BINARIES=docs/date-from-iso-parts docs/date-from-parts docs/date-from-string \
docs/date-to-parts docs/show-tzinfo
all: parse_date.o tm2unixtime.o unixtime2tm.o dow.o astro.o interval.o timelib.a timelib.so \
${TEST_BINARIES} ${EXAMPLE_BINARIES}
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: ${FILES}
ar -rc timelib.a ${FILES}
timelib.so: ${FILES}
$(CC) $(CFLAGS_BASE) -shared -o timelib.so ${FILES} $(LDFLAGS_BASE)
tests/tester-diff: timelib.a tests/tester-diff.c
$(CC) $(CFLAGS) -o tests/tester-diff tests/tester-diff.c timelib.a $(LDFLAGS)
tests/tester-parse-string: timelib.a tests/tester-parse-string.c
$(CC) $(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
$(CC) $(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
$(CC) $(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
$(CC) $(CFLAGS) -o tests/tester-create-ts tests/tester-create-ts.c timelib.a $(LDFLAGS)
tests/tester-render-ts: timelib.a tests/tester-render-ts.c
$(CC) $(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
$(CC) $(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
$(CC) $(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
$(CC) $(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
$(CC) $(CFLAGS) -o tests/test-astro tests/test-astro.c timelib.a -lm $(LDFLAGS)
tests/enumerate-timezones: timelib.a tests/enumerate-timezones.c
$(CC) $(CFLAGS) -o tests/enumerate-timezones tests/enumerate-timezones.c timelib.a $(LDFLAGS)
tests/date_from_isodate: timelib.a tests/date_from_isodate.c
$(CC) $(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
$(CC) $(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
$(CC) $(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
$(CC) $(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
$(CC) $(CFLAGS) -o docs/date-to-parts docs/date-to-parts.c timelib.a $(LDFLAGS)
docs/show-tzinfo: timelib.a docs/show-tzinfo.c
$(CC) $(CFLAGS) -o docs/show-tzinfo docs/show-tzinfo.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 tests/c/*.o timelib.a timelib.so ${TEST_BINARIES}
#%.o: %.cpp timelib.a
# $(CXX) -c $(CPPFLAGS) $(LDFLAGS) $< -o $@
ctest: tests/c/all_tests.cpp timelib.a ${C_TESTS}
$(CXX) $(CPPFLAGS) $(LDFLAGS) tests/c/all_tests.cpp ${C_TESTS} $(TEST_LDFLAGS) timelib.a -o ctest
test: ctest
@./ctest -c
package: clean
tar -cvzf parse_date.tar.gz parse_date.re Makefile tests