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