notmuch/parse-time-string/Makefile.local
Jani Nikula d86522637a parse-time-string: add a date/time parser to notmuch
Add a date/time parser to notmuch, to be used for adding date range
query support for notmuch lib later on. Add the parser to a directory
of its own to make it independent of the rest of the notmuch code
base.

Signed-off-by: Jani Nikula <jani@nikula.org>
2012-10-31 16:42:29 -03:00

12 lines
409 B
Text

dir := parse-time-string
extra_cflags += -I$(srcdir)/$(dir)
libparse-time-string_c_srcs := $(dir)/parse-time-string.c
libparse-time-string_modules := $(libparse-time-string_c_srcs:.c=.o)
$(dir)/libparse-time-string.a: $(libparse-time-string_modules)
$(call quiet,AR) rcs $@ $^
SRCS := $(SRCS) $(libparse-time-string_c_srcs)
CLEAN := $(CLEAN) $(libparse-time-string_modules) $(dir)/libparse-time-string.a