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