2
0

subobj-vpath-pr13928.sh 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #! /bin/sh
  2. # Copyright (C) 2013-2017 Free Software Foundation, Inc.
  3. #
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  16. # Expose part of automake bug#13928: if the subdir-objects option is
  17. # in use and a source file is listed in a _SOURCES variable with a
  18. # leading $(srcdir) component, Automake will generate a Makefile that
  19. # tries to create the corresponding object file in $(srcdir) as well.
  20. required=cc
  21. . test-init.sh
  22. cat >> configure.ac << 'END'
  23. AC_PROG_CC
  24. AM_PROG_CC_C_O
  25. AC_OUTPUT
  26. END
  27. cat > Makefile.am <<'END'
  28. AUTOMAKE_OPTIONS = subdir-objects
  29. noinst_PROGRAMS = test
  30. test_SOURCES = $(srcdir)/test.c
  31. test-objs:
  32. test ! -f $(srcdir)/test.$(OBJEXT)
  33. test -f test.$(OBJEXT)
  34. END
  35. $ACLOCAL && $AUTOCONF && $AUTOMAKE -a || fatal_ "autotools failed"
  36. $EGREP 'test\.|DEPDIR|dirstamp|srcdir' Makefile.in || : # For debugging.
  37. $EGREP '\$.srcdir./test\.[o$]' Makefile.in && exit 1
  38. $EGREP '$(srcdir)/$(am__dirstamp)' Makefile.in && exit 1
  39. $EGREP '$(srcdir)/$(DEPDIR)' && exit 1
  40. cat > test.c << 'END'
  41. int main (void)
  42. {
  43. return 0;
  44. }
  45. END
  46. mkdir build && cd build || fatal "preparation of build directory failed"
  47. ../configure || fatal_ "./configure failed"
  48. $MAKE
  49. $MAKE test-objs
  50. :