]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/Makefile.in (src/emacs-module-tests.log): Out-of-tree fix.
authorGlenn Morris <rgm@gnu.org>
Tue, 13 Jun 2017 19:41:56 +0000 (15:41 -0400)
committerGlenn Morris <rgm@gnu.org>
Tue, 13 Jun 2017 19:41:56 +0000 (15:41 -0400)
test/Makefile.in

index 4998338b9206f154f67b777271a851485229af90..5d8ec65529a0031cb7d993f28ec4d8816ac29e29 100644 (file)
@@ -202,10 +202,9 @@ endif
 MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \
   $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
 
-test_module_name := mod-test@MODULES_SUFFIX@
-test_module := $(test_module_dir)/$(test_module_name)
-$(srcdir)/src/emacs-module-tests.log: $(test_module)
-$(test_module): $(test_module_dir)/mod-test.c $(srcdir)/../src/emacs-module.h
+test_module = $(test_module_dir)/mod-test${SO}
+src/emacs-module-tests.log: $(test_module)
+$(test_module): $(test_module:${SO}=.c) $(srcdir)/../src/emacs-module.h
        $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \
          -o $@ $<
 endif