From d86522637a7cd0455c127284ebccf3645d681441 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Tue, 30 Oct 2012 22:32:33 +0200 Subject: 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 --- parse-time-string/Makefile.local | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 parse-time-string/Makefile.local (limited to 'parse-time-string/Makefile.local') diff --git a/parse-time-string/Makefile.local b/parse-time-string/Makefile.local new file mode 100644 index 00000000..53534f3e --- /dev/null +++ b/parse-time-string/Makefile.local @@ -0,0 +1,12 @@ +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 -- cgit v1.2.3