empty-sources-primary.tap 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #! /bin/sh
  2. # Copyright (C) 1999-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. # A test for missing _SOURCES variable. Also test to make sure empty
  17. # _SOURCES suppresses assumption about default name.
  18. . test-init.sh
  19. plan_ 5
  20. cat >> configure.ac << 'END'
  21. AC_PROG_CC
  22. AC_SUBST([zoo_obj])
  23. END
  24. cat > Makefile.am << 'END'
  25. sbin_PROGRAMS = pavel
  26. bin_PROGRAMS = pavel2
  27. pavel2_SOURCES =
  28. noinst_PROGRAMS = zoo
  29. zoo_SOURCES =
  30. EXTRA_zoo_SOURCES = bar.c foo.c
  31. zoo_DEPENDENCIES = $(zoo_obj)
  32. zoo_LDADD = $(zoo_DEPENDENCIES)
  33. END
  34. command_ok_ "aclocal" $ACLOCAL
  35. command_ok_ "automake" $AUTOMAKE
  36. command_ok_ "default _SOURCES" $FGREP ' pavel.c' Makefile.in
  37. command_ok_ "empty _SOURCES (basic)" not $FGREP 'pavel2.' Makefile.in
  38. command_ok_ "empty _SOURCES (elaborate)" not $FGREP 'zoo.' Makefile.in
  39. :