mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
5c12ee4b5d
This adds source files in compat, test, and util to SRCS so that the top-level Makefile.local will generate dependency files for them.
16 lines
303 B
Makefile
16 lines
303 B
Makefile
# -*- makefile -*-
|
|
|
|
dir := compat
|
|
extra_cflags += -I$(srcdir)/$(dir)
|
|
|
|
notmuch_compat_srcs :=
|
|
|
|
ifneq ($(HAVE_GETLINE),1)
|
|
notmuch_compat_srcs += $(dir)/getline.c $(dir)/getdelim.c
|
|
endif
|
|
|
|
ifneq ($(HAVE_STRCASESTR),1)
|
|
notmuch_compat_srcs += $(dir)/strcasestr.c
|
|
endif
|
|
|
|
SRCS := $(SRCS) $(notmuch_compat_srcs)
|