Skip to content

Commit a67e90b

Browse files
committed
Add time extension to automake
1 parent 01b17c0 commit a67e90b

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

Makefile.am

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ src_files = \
88
src/core/ndarray.c \
99
src/core/ndarray_convert.c \
1010
src/core/software.c \
11+
src/core/time.c \
1112
src/error.c \
1213
src/event.c \
1314
src/extension_registry.c \

tests/Makefile.am

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ check_PROGRAMS = \
3232
test-parse.unit \
3333
test-parse-util.unit \
3434
test-stream.unit \
35+
test-time.unit \
3536
test-value.unit \
3637
test-value-util.unit
3738

@@ -129,6 +130,13 @@ test_stream_unit_CFLAGS = $(unit_test_cflags)
129130
test_stream_unit_LDFLAGS = $(unit_test_ldflags)
130131
test_stream_unit_LDADD = $(FYAML_LIBS) libmunit.a $(STATGRAB_LIBS)
131132

133+
# test-time.unit
134+
test_time_unit_SOURCES = test-time.c
135+
test_time_unit_CPPFLAGS = $(unit_test_cppflags)
136+
test_time_unit_CFLAGS = $(unit_test_cflags)
137+
test_time_unit_LDFLAGS = $(unit_test_ldflags)
138+
test_time_unit_LDADD = $(unit_test_ldadd)
139+
132140
# test-value.unit
133141
test_value_unit_SOURCES = test-value.c
134142
test_value_unit_CPPFLAGS = $(unit_test_cppflags)

0 commit comments

Comments
 (0)