mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
3e4a9d60a9
Such as: mkdir build cd build ../configure make This is implemented by having the configure script set a srcdir variable in Makefile.config, and then sprinkling $(srcdir) into various make rules. We also use vpath directives to convince GNU make to find the source files from the original source directory.
14 lines
263 B
Makefile
14 lines
263 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
|