Fix a @pxref.
[glibc/history.git] / Rules
blob56b67954932a48125c22b5b23e204cbd12fc9374
1 # Copyright (C) 1991 Free Software Foundation, Inc.
2 # This file is part of the GNU C Library.
4 # The GNU C Library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Library General Public License as
6 # published by the Free Software Foundation; either version 2 of the
7 # License, or (at your option) any later version.
9 # The GNU C Library 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 GNU
12 # Library General Public License for more details.
14 # You should have received a copy of the GNU Library General Public
15 # License along with the GNU C Library; see the file COPYING.LIB.  If
16 # not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 # Cambridge, MA 02139, USA.
20 #       Propagated rules for making the GNU C library
22 ifneq (,)
23 This makefile requires GNU Make.
24 endif
26 include ../Makeconfig
28 ifndef  subdir
29 Each subdirectory makefile must define the `subdir' variable.
30 endif
32 # This is the default target; it makes the library.
33 .PHONY: all
34 all: lib headers
36 ifneq   "$(findstring env,$(origin headers))" ""
37 override headers :=
38 endif
40 ifeq "$(strip $(headers))" ""
41 ifneq "$(wildcard $(subdir).h)" ""
42 override headers := $(subdir).h
43 endif
44 endif
46 include ../Makerules
48 .PHONY: subdir_lib
49 subdir_lib: lib-noranlib
51 .PHONY: subdir_headers
52 subdir_headers: headers
54 # This makes all the auxilliary and test programs.
56 .PHONY: others tests
57 others: $(addprefix $(objpfx),$(others))
58 tests: $(tests:%=$(objpfx)%.out)
60 ifneq "$(strip $(others) $(tests))" ""
61 $(addprefix $(objpfx),$(others) $(tests)): %: %.o lib
62         $(+link)
63 endif
65 ifneq "$(strip $(tests))" ""
66 # These are the implicit rules for making test outputs
67 # from the test programs and whatever input files are present.
68 $(objpfx)%.out: $(objpfx)% %.args %.input
69         $(dir $<)$(notdir $<) `cat $(word 2,$^)` < $(word 3,$^) > $@
70 $(objpfx)%.out: $(objpfx)% %.args
71         $(dir $<)$(notdir $<) `cat $(word 2,$^)` > $@
72 $(objpfx)%.out: $(objpfx)% %.input
73         $(dir $<)$(notdir $<) < $(word 2,$^) > $@
74 $(objpfx)%.out: $(objpfx)%
75         $(dir $<)$(notdir $<) > $@
76 endif   # tests
78 # This removes everything that can be regenerated
79 # except for the object files and the object-file library members.
80 .PHONY: mostlyclean
81 mostlyclean:
82         rm -f $(addprefix $(objpfx),$(tests) $(others))
83         rm -f core TAGS depend
85 # This removes absolutely everything that can be regenerated.
86 .PHONY: subdir_clean clean realclean
87 subdir_clean realclean: clean
88 clean: mostlyclean
89         rm -f $(objects) $(+depfiles)
91 .PHONY: subdir_echo-headers
92 subdir_echo-headers: echo-headers
94 .PHONY: subdir_echo-distinfo
95 subdir_echo-distinfo:
96         @echo $(addprefix +header+,$(headers)) \
97               $(addprefix +nodist+,$(dont_distribute))
99 .PHONY: subdir_install
100 subdir_install: install
102 # In most cases, we want the C source files to come before
103 # the header files so tags for optimizing #define's in the
104 # headers won't be put in the tags files, but for ctype,
105 # the functions are just backup for the #define's in the header.
106 ifeq    "$(subdir)" "ctype"
107 +tags_sources   := *.h $(sources)
108 else
109 +tags_sources   := $(sources) *.h
110 endif
112 # This makes the tags file.
113 TAGS: $(+tags_sources)
114         @$(cmdecho) '$(ctags) -f $@ ...'
115         @$(ctags) -f $@ $^
116 .PHONY: subdir_TAGS
117 subdir_TAGS: TAGS
119 # Make the distribution tarfile for the parent makefile.
121 ifneq "$(findstring env,$(origin distribute))" ""
122 override distribute :=
123 endif
125 .PHONY: subdir_dist dist
126 subdir_dist: dist
127 dist: ../Make-dist
128         $(MAKE) -f $< $(Make-dist-args)
130 # Keep these out of the environment so it doesn't get too big.
131 override routines :=
132 override aux :=