diff options
| author | Glenn Morris | 2017-06-13 15:41:56 -0400 |
|---|---|---|
| committer | Glenn Morris | 2017-06-13 15:41:56 -0400 |
| commit | 863b3335436be246fd00ad2aa264d474afc1c48c (patch) | |
| tree | 75754238ca86048c59bdb91895aa67f0974f36b5 /test | |
| parent | 58b9b098a4cbefbe7ae28079a96625bd450c9316 (diff) | |
| download | emacs-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.in | 7 |
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 | |||
| 202 | MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \ | 202 | MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \ |
| 203 | $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS) | 203 | $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS) |
| 204 | 204 | ||
| 205 | test_module_name := mod-test@MODULES_SUFFIX@ | 205 | test_module = $(test_module_dir)/mod-test${SO} |
| 206 | test_module := $(test_module_dir)/$(test_module_name) | 206 | src/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 $@ $< |
| 211 | endif | 210 | endif |