aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2017-06-13 15:41:56 -0400
committerGlenn Morris2017-06-13 15:41:56 -0400
commit863b3335436be246fd00ad2aa264d474afc1c48c (patch)
tree75754238ca86048c59bdb91895aa67f0974f36b5 /test
parent58b9b098a4cbefbe7ae28079a96625bd450c9316 (diff)
downloademacs-863b3335436be246fd00ad2aa264d474afc1c48c.tar.gz
emacs-863b3335436be246fd00ad2aa264d474afc1c48c.zip
* test/Makefile.in (src/emacs-module-tests.log): Out-of-tree fix.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.in7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 4998338b920..5d8ec65529a 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -202,10 +202,9 @@ endif
202MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \ 202MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \
203 $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS) 203 $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
204 204
205test_module_name := mod-test@MODULES_SUFFIX@ 205test_module = $(test_module_dir)/mod-test${SO}
206test_module := $(test_module_dir)/$(test_module_name) 206src/emacs-module-tests.log: $(test_module)
207$(srcdir)/src/emacs-module-tests.log: $(test_module) 207$(test_module): $(test_module:${SO}=.c) $(srcdir)/../src/emacs-module.h
208$(test_module): $(test_module_dir)/mod-test.c $(srcdir)/../src/emacs-module.h
209 $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \ 208 $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \
210 -o $@ $< 209 -o $@ $<
211endif 210endif