Provide POSIX-like timekeeping utilities using system clock to support monotonic, accurate, timezone-aware time Implements settimeofday(), gettimeofday(), and adjtime() Utilizes setenv() and tzset() See README.timekeeping.md for more details
8 lines
222 B
Makefile
8 lines
222 B
Makefile
# Component makefile for extras/timekeeping
|
|
|
|
INC_DIRS += $(timekeeping_ROOT)
|
|
|
|
# args for passing into compile rule generation
|
|
timekeeping_SRC_DIR = $(timekeeping_ROOT)
|
|
|
|
$(eval $(call component_compile_rules,timekeeping))
|