Fix overfull hbox.
[glibc/history.git] / Rules
blob275dbc3a6e26c0aa50e44c7171e8de99ac62c679
1 # Copyright (C) 1991, 1992 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
31 # This is benign and useless in GNU make before 3.63.
32 export subdir := $(subdir)
34 # This is the default target; it makes the library.
35 .PHONY: all
36 all: lib
38 ifneq   "$(findstring env,$(origin headers))" ""
39 headers :=
40 endif
42 ifeq "$(strip $(headers))" ""
43 ifneq "$(wildcard $(subdir).h)" ""
44 override headers := $(subdir).h
45 endif
46 endif
48 include ../Makerules
50 .PHONY: subdir_lib
51 subdir_lib: lib-noranlib
53 # This makes all the auxilliary and test programs.
55 .PHONY: others tests
56 others: $(addprefix $(objpfx),$(others))
57 tests: $(tests:%=$(objpfx)%.out)
59 ifneq "$(strip $(others) $(tests))" ""
60 $(addprefix $(objpfx),$(others) $(tests)): %: %.o $(libc.a)
61         $(+link)
62 endif
64 ifneq "$(strip $(tests))" ""
65 # These are the implicit rules for making test outputs
66 # from the test programs and whatever input files are present.
67 $(objpfx)%.out: $(objpfx)% %.args %.input
68         $(dir $<)$(notdir $<) `cat $(word 2,$^)` < $(word 3,$^) > $@
69 $(objpfx)%.out: $(objpfx)% %.args
70         $(dir $<)$(notdir $<) `cat $(word 2,$^)` > $@
71 $(objpfx)%.out: $(objpfx)% %.input
72         $(dir $<)$(notdir $<) < $(word 2,$^) > $@
73 $(objpfx)%.out: $(objpfx)%
74         $(dir $<)$(notdir $<) > $@
75 endif   # tests
77 export others := $(others)
78 export tests := $(tests)
80 # This removes everything that can be regenerated
81 # except for the object files and the object-file library members.
82 .PHONY: mostlyclean
83 mostlyclean:
84         -rm -f $(addprefix $(objpfx),$(tests) $(others))
85         -rm -f core TAGS depend
87 # This removes absolutely everything that can be regenerated.
88 .PHONY: subdir_clean clean realclean
89 subdir_clean realclean: clean
90 +objs := $(objects)
91 clean: mostlyclean
92         -rm -f $(+objs) $(+depfiles) $(clean-extras)
94 .PHONY: subdir_echo-headers
95 subdir_echo-headers: echo-headers
97 .PHONY: subdir_echo-distinfo
98 subdir_echo-distinfo:
99         @echo $(addprefix +header+,$(headers)) \
100               $(addprefix +nodist+,$(dont_distribute))
102 .PHONY: subdir_install
103 subdir_install: install
105 .PHONY: subdir_TAGS
106 subdir_TAGS: TAGS
108 # Make the distribution tarfile for the parent makefile.
109 export distribute := $(distribute)
110 export dont_distribute := $(dont_distribute)
111 .PHONY: subdir_dist dist
112 subdir_dist: dist
113 dist: ../Make-dist
114         $(MAKE) -f $< $(Make-dist-args)