mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
12 lines
231 B
Text
12 lines
231 B
Text
|
# -*- makefile -*-
|
||
|
|
||
|
dir := util
|
||
|
extra_cflags += -I$(srcdir)/$(dir)
|
||
|
|
||
|
libutil_c_srcs := $(dir)/xutil.c $(dir)/error_util.c
|
||
|
|
||
|
libutil_modules := $(libutil_c_srcs:.c=.o)
|
||
|
|
||
|
$(dir)/libutil.a: $(libutil_modules)
|
||
|
$(call quiet,AR) rcs $@ $^
|