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