* automake.in (read_am_file): Removed debugging code.
[automake.git] / multilib.am
blob9ff16eb93b912e7ee96638778e1702218eb394fd
1 ## automake - create Makefile.in from Makefile.am
2 ## Copyright 1998, 2001 Free Software Foundation, Inc.
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.
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.
14 ## You should have received a copy of the GNU General Public License
15 ## along with this program; if not, write to the Free Software
16 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17 ## 02111-1307, USA.
18 ## Multilib support variables.
19 MULTISRCTOP =
20 MULTIBUILDTOP =
21 MULTIDIRS =
22 MULTISUBDIR =
23 MULTIDO = true
24 MULTICLEAN = true
26 all-multi:
27         $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do
28 install-multi:
29         $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do
31 .PHONY: all-multi install-multi
34 mostlyclean-am: mostlyclean-multi
35 clean-am: clean-multi
36 distclean-am: distclean-multi
37 maintainer-clean-am: maintainer-clean-multi
39 mostlyclean-multi:
40         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean
41 clean-multi:
42         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean
43 distclean-multi:
44         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean
45 maintainer-clean-multi:
46         $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean
48 .PHONY: mostlyclean-multi clean-multi distclean-multi maintainer-clean-multi
51 ## FIXME: this is probably broken.
52 all-recursive: all-multi
53 install-recursive: install-multi
54 mostlyclean-recursive: mostlyclean-multi
55 clean-recursive: clean-multi
56 distclean-recursive: distclean-multi
57 maintainer-clean-recursive: maintainer-clean-multi