source: trunk/essentials/sys-devel/automake-1.9/lib/am/depend2.am

Last change on this file was 3086, checked in by bird, 18 years ago

automake 1.9.6

File size: 6.3 KB
Line 
1## automake - create Makefile.in from Makefile.am
2## Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3## 2003, 2004 Free Software Foundation, Inc.
4
5## This program is free software; you can redistribute it and/or modify
6## it under the terms of the GNU General Public License as published by
7## the Free Software Foundation; either version 2, or (at your option)
8## any later version.
9
10## This program is distributed in the hope that it will be useful,
11## but WITHOUT ANY WARRANTY; without even the implied warranty of
12## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13## GNU General Public License for more details.
14
15## You should have received a copy of the GNU General Public License
16## along with this program; if not, write to the Free Software
17## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18## 02110-1301, USA.
19
20## This file is read several times:
21## - once per *extension* (not per language) for generic compilation rules
22## - once for each file which requires specific flags.
23
24## Note it is on purpose we wrote `if %AMDEP%', since:
25##
26## - if deps are turned off, %AMDEP% is mapped onto FALSE, and therefore
27## the `if FALSE' chunk is removed (automake-time conditionals).
28##
29## - if deps are on, %AMDEP% is mapped onto AMDEP, and therefore
30## the `if AMDEP' chunk is prefix with @AMDEP_TRUE@ just like for any
31## other configure-time conditional.
32##
33## We do likewise for %FASTDEP%; this expands to an ordinary
34## configure-time conditional. %FASTDEP% is used to speed up the
35## common case of building a package with gcc 3.x. In this case we
36## can skip the use of depcomp and easily inline the dependency
37## tracking.
38
39## Verbosity of FASTDEP rules
40## --------------------------
41## (1) Some people want to see what happen during make. They think
42## @-commands are evil because hiding things hinders debugging.
43## (2) Other people want to see only the important commands--those that
44## may produce diagnostics, such as compiler invocations. They
45## do not care about build details such as dependency generation
46## (the if/then/else machinery in FASTDEP rules). Their point is
47## that it is hard to spot diagnostics in a verbose output.
48## (3) Other people want `make -s' to work as expected: silently.
49## This way they can spot any diagnostic really easily.
50##
51## The second point suggests we hide rules with @ and that we `echo'
52## only the relevant parts. However this goes against the two others.
53## There are regular complaints about this on the mailing list, but
54## it's hard to please everybody. On April 2003, William Fulton (from
55## clan (3)) and Karl Berry (from clan (2)) agreed that folding the
56## compile rules so that they are output on a single line (instead of 5)
57## would be a good compromise. Actually we use two line rather than one,
58## because this way %SOURCE% is always located at the end of the first
59## line and is therefore easier to spot. (We need an extra line when
60## depbase is used.)
61
62if %?NONLIBTOOL%
63?GENERIC?%EXT%.o:
64?!GENERIC?%OBJ%: %SOURCE%
65if %FASTDEP%
66## In fast-dep mode, we can always use -o.
67## For non-suffix rules, we must emulate a VPATH search on %SOURCE%.
68?!GENERIC? if %COMPILE% -MT %OBJ% -MD -MP -MF "%DEPBASE%.Tpo" %-c% -o %OBJ% `test -f '%SOURCE%' || echo '$(srcdir)/'`%SOURCE%; \
69?SUBDIROBJ??GENERIC? depbase=`echo %OBJ% | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`; \
70?GENERIC? if %COMPILE% -MT %OBJ% -MD -MP -MF "%DEPBASE%.Tpo" %-c% -o %OBJ% %SOURCE%; \
71 then mv -f "%DEPBASE%.Tpo" "%DEPBASE%.Po"; else rm -f "%DEPBASE%.Tpo"; exit 1; fi
72else !%FASTDEP%
73if %AMDEP%
74 source='%SOURCE%' object='%OBJ%' libtool=no @AMDEPBACKSLASH@
75 DEPDIR=$(DEPDIR) $(%FPFX%DEPMODE) $(depcomp) @AMDEPBACKSLASH@
76endif %AMDEP%
77if %?GENERIC%
78?-o? %COMPILE% %-c% %-o% %OBJ% %SOURCE%
79?!-o? %COMPILE% %-c% %SOURCE%
80else !%?GENERIC%
81## For non-suffix rules, we must emulate a VPATH search on %SOURCE%.
82?-o? %COMPILE% %-c% %-o% %OBJ% `test -f '%SOURCE%' || echo '$(srcdir)/'`%SOURCE%
83?!-o? %COMPILE% %-c% `test -f '%SOURCE%' || echo '$(srcdir)/'`%SOURCE%
84endif !%?GENERIC%
85endif !%FASTDEP%
86
87?GENERIC?%EXT%.obj:
88?!GENERIC?%OBJOBJ%: %SOURCE%
89if %FASTDEP%
90## In fast-dep mode, we can always use -o.
91## For non-suffix rules, we must emulate a VPATH search on %SOURCE%.
92?!GENERIC? if %COMPILE% -MT %OBJOBJ% -MD -MP -MF "%DEPBASE%.Tpo" %-c% -o %OBJOBJ% `if test -f '%SOURCE%'; then $(CYGPATH_W) '%SOURCE%'; else $(CYGPATH_W) '$(srcdir)/%SOURCE%'; fi`; \
93?SUBDIROBJ??GENERIC? depbase=`echo %OBJ% | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`; \
94?GENERIC? if %COMPILE% -MT %OBJOBJ% -MD -MP -MF "%DEPBASE%.Tpo" %-c% -o %OBJOBJ% `$(CYGPATH_W) '%SOURCE%'`; \
95 then mv -f "%DEPBASE%.Tpo" "%DEPBASE%.Po"; else rm -f "%DEPBASE%.Tpo"; exit 1; fi
96else !%FASTDEP%
97if %AMDEP%
98 source='%SOURCE%' object='%OBJOBJ%' libtool=no @AMDEPBACKSLASH@
99 DEPDIR=$(DEPDIR) $(%FPFX%DEPMODE) $(depcomp) @AMDEPBACKSLASH@
100endif %AMDEP%
101if %?GENERIC%
102?-o? %COMPILE% %-c% %-o% %OBJOBJ% `$(CYGPATH_W) '%SOURCE%'`
103?!-o? %COMPILE% %-c% `$(CYGPATH_W) '%SOURCE%'`
104else !%?GENERIC%
105## For non-suffix rules, we must emulate a VPATH search on %SOURCE%.
106?-o? %COMPILE% %-c% %-o% %OBJOBJ% `if test -f '%SOURCE%'; then $(CYGPATH_W) '%SOURCE%'; else $(CYGPATH_W) '$(srcdir)/%SOURCE%'; fi`
107?!-o? %COMPILE% %-c% `if test -f '%SOURCE%'; then $(CYGPATH_W) '%SOURCE%'; else $(CYGPATH_W) '$(srcdir)/%SOURCE%'; fi`
108endif !%?GENERIC%
109endif !%FASTDEP%
110endif %?NONLIBTOOL%
111
112if %?LIBTOOL%
113?GENERIC?%EXT%.lo:
114?!GENERIC?%LTOBJ%: %SOURCE%
115if %FASTDEP%
116## In fast-dep mode, we can always use -o.
117## For non-suffix rules, we must emulate a VPATH search on %SOURCE%.
118?!GENERIC? if %LTCOMPILE% -MT %LTOBJ% -MD -MP -MF "%DEPBASE%.Tpo" %-c% -o %LTOBJ% `test -f '%SOURCE%' || echo '$(srcdir)/'`%SOURCE%; \
119?SUBDIROBJ??GENERIC? depbase=`echo %OBJ% | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`; \
120?GENERIC? if %LTCOMPILE% -MT %LTOBJ% -MD -MP -MF "%DEPBASE%.Tpo" %-c% -o %LTOBJ% %SOURCE%; \
121 then mv -f "%DEPBASE%.Tpo" "%DEPBASE%.Plo"; else rm -f "%DEPBASE%.Tpo"; exit 1; fi
122else !%FASTDEP%
123if %AMDEP%
124 source='%SOURCE%' object='%LTOBJ%' libtool=yes @AMDEPBACKSLASH@
125 DEPDIR=$(DEPDIR) $(%FPFX%DEPMODE) $(depcomp) @AMDEPBACKSLASH@
126endif %AMDEP%
127## We can always use `-o' with Libtool.
128?GENERIC? %LTCOMPILE% %-c% -o %LTOBJ% %SOURCE%
129## For non-suffix rules, we must emulate a VPATH search on %SOURCE%.
130?!GENERIC? %LTCOMPILE% %-c% -o %LTOBJ% `test -f '%SOURCE%' || echo '$(srcdir)/'`%SOURCE%
131endif !%FASTDEP%
132endif %?LIBTOOL%
Note: See TracBrowser for help on using the repository browser.