diff options
| author | Philipp Stephani | 2017-06-05 10:04:20 +0200 |
|---|---|---|
| committer | Philipp Stephani | 2017-06-05 10:05:17 +0200 |
| commit | 98e107ff0ca39027420a2ea100037402d23a0ea0 (patch) | |
| tree | 83a7087a39ce9a79dbcddb2fb8ca4d675f90550d | |
| parent | 646b74e50ef998c687794876ddc0f16766a5f57c (diff) | |
| download | emacs-98e107ff0ca39027420a2ea100037402d23a0ea0.tar.gz emacs-98e107ff0ca39027420a2ea100037402d23a0ea0.zip | |
Add missing dependency to test module source file
| -rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 4f12a8ea48c..7b8c967128f 100644 --- a/test/Makefile.in +++ b/test/Makefile.in | |||
| @@ -182,7 +182,7 @@ test_module_dir := $(srcdir)/data/emacs-module | |||
| 182 | test_module_name := mod-test@MODULES_SUFFIX@ | 182 | test_module_name := mod-test@MODULES_SUFFIX@ |
| 183 | test_module := $(test_module_dir)/$(test_module_name) | 183 | test_module := $(test_module_dir)/$(test_module_name) |
| 184 | $(srcdir)/src/emacs-module-tests.log: $(test_module) | 184 | $(srcdir)/src/emacs-module-tests.log: $(test_module) |
| 185 | $(test_module): $(srcdir)/../src/emacs-module.[ch] | 185 | $(test_module): $(srcdir)/../src/emacs-module.[ch] $(test_module_dir)/mod-test.c |
| 186 | $(MAKE) -C $(test_module_dir) $(test_module_name) SO=@MODULES_SUFFIX@ | 186 | $(MAKE) -C $(test_module_dir) $(test_module_name) SO=@MODULES_SUFFIX@ |
| 187 | endif | 187 | endif |
| 188 | 188 | ||