]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - include/buildrules
install the right libtool archive this time.
[thirdparty/xfsprogs-dev.git] / include / buildrules
1 #
2 # Copyright (C) 1999 Silicon Graphics, Inc. All Rights Reserved.
3 #
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of version 2 of the GNU General Public License as published
6 # by the Free Software Fondation.
7 #
8 # This program is distributed in the hope that it would be useful, but WITHOUT
9 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 # FITNESS FOR A PARTICULAR PURPOSE. Further, any license provided herein,
11 # whether implied or otherwise, is limited to this program in accordance with
12 # the express provisions of the GNU General Public License. Patent licenses,
13 # if any, provided herein do not apply to combinations of this program with
14 # other product or programs, or any other product whatsoever. This program is
15 # distributed without any warranty that the program is delivered free of the
16 # rightful claim of any third person by way of infringement or the like. See
17 # the GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License along with
20 # this program; if not, write the Free Software Foundation, Inc., 59 Temple
21 # Place - Suite 330, Boston MA 02111-1307, USA.
22 # Common build rules for gmake
23 #
24 ifndef _BUILDRULES_INCLUDED_
25 _BUILDRULES_INCLUDED_ = 1
26
27 include $(TOPDIR)/include/builddefs
28
29 clean clobber : $(SUBDIRS)
30 rm -f $(DIRT)
31 @rm -fr .libs
32 $(SUBDIRS_MAKERULE)
33
34 # Never blow away subdirs
35 ifdef SUBDIRS
36 .PRECIOUS: $(SUBDIRS)
37 $(SUBDIRS):
38 $(SUBDIRS_MAKERULE)
39 endif
40
41 #
42 # Standard targets
43 #
44
45 ifdef LTCOMMAND
46 $(LTCOMMAND) : $(SUBDIRS) $(OBJECTS) $(LTDEPENDENCIES)
47 $(LTLINK) -o $@ $(LDFLAGS) $(OBJECTS) $(LDLIBS)
48 endif
49
50 ifdef LTLIBRARY
51 $(LTLIBRARY) : $(SUBDIRS) $(LTOBJECTS)
52 $(LTLINK) $(LTLDFLAGS) -o $(LTLIBRARY) $(LTOBJECTS) $(LTLIBS)
53
54 %.lo: %.c
55 $(LTCOMPILE) -c $<
56 endif
57
58 source :
59 $(SOURCE_MAKERULE)
60
61 endif # _BUILDRULES_INCLUDED_
62
63 $(_FORCE):
64
65 .PHONY : depend
66
67 depend : $(CFILES) $(HFILES)
68 $(SUBDIRS_MAKERULE)
69 touch dep
70 $(MAKEDEPEND) -fdep -- $(CFLAGS) -- $(CFILES)
71
72 # Include dep, but only if it exists
73 ifeq ($(shell test -f dep && echo dep), dep)
74 include dep
75 endif