multilib.am 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. ## automake - create Makefile.in from Makefile.am
  2. ## Copyright (C) 1994-2017 Free Software Foundation, Inc.
  3. ## This Makefile.in is free software; the Free Software Foundation
  4. ## gives unlimited permission to copy and/or distribute it,
  5. ## with or without modifications, as long as this notice is preserved.
  6. ## This program is distributed in the hope that it will be useful,
  7. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. ## GNU General Public License for more details.
  10. MULTISRCTOP =
  11. MULTIBUILDTOP =
  12. MULTIDIRS =
  13. MULTISUBDIR =
  14. MULTIDO = true
  15. MULTICLEAN = true
  16. # GNU Make needs to see an explicit $(MAKE) variable in the command it
  17. # runs to enable its job server during parallel builds. Hence the
  18. # comments below.
  19. all-multi:
  20. $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
  21. install-multi:
  22. $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
  23. mostlyclean-multi:
  24. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
  25. clean-multi:
  26. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
  27. distclean-multi:
  28. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
  29. maintainer-clean-multi:
  30. $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
  31. .MAKE .PHONY: all-multi clean-multi distclean-multi install-am \
  32. install-multi maintainer-clean-multi mostlyclean-multi
  33. install-exec-local: install-multi
  34. all-local: all-multi
  35. mostlyclean-local: mostlyclean-multi
  36. clean-local: clean-multi
  37. distclean-local: distclean-multi
  38. maintainer-clean-local: maintainer-clean-multi