RMS documented his .SECONDARY feature.
[make.git] / Makefile.in
blob8db3f1e0ca9c29f750a3286f65ef320773edeadc
1 # NOTE: If you have no `make' program at all to process this makefile, run
2 # `build.sh' instead.
4 # Copyright (C) 1988,89,91,92,93,94,95,96 Free Software Foundation, Inc.
5 # This file is part of GNU Make.
7 # GNU Make is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
12 # GNU Make is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Make; see the file COPYING. If not, write to
19 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 # Makefile for GNU Make
25 # Ultrix 2.2 make doesn't expand the value of VPATH.
26 VPATH = @srcdir@
27 # This must repeat the value, because configure will remove `VPATH = .'.
28 srcdir = @srcdir@
30 CC = @CC@
32 CFLAGS = @CFLAGS@
33 CPPFLAGS = @CPPFLAGS@
34 LDFLAGS = @LDFLAGS@
36 # Define these for your system as follows:
37 # -DNO_ARCHIVES To disable `ar' archive support.
38 # -DNO_FLOAT To avoid using floating-point numbers.
39 # -DENUM_BITFIELDS If the compiler isn't GCC but groks enum foo:2.
40 # Some compilers apparently accept this
41 # without complaint but produce losing code,
42 # so beware.
43 # NeXT 1.0a uses an old version of GCC, which required -D__inline=inline.
44 # See also `config.h'.
45 defines = @DEFS@ -DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\"
47 # Which flavor of remote job execution support to use.
48 # The code is found in `remote-$(REMOTE).c'.
49 REMOTE = @REMOTE@
51 # If your system doesn't have alloca, or the one provided is bad, define this.
52 ALLOCA = @ALLOCA@
53 ALLOCA_SRC = $(srcdir)/alloca.c
55 # If your system needs extra libraries loaded in, define them here.
56 # System V probably need -lPW for alloca. HP-UX 7.0's alloca in
57 # libPW.a is broken on HP9000s300 and HP9000s400 machines. Use
58 # alloca.c instead on those machines.
59 LOADLIBES = @LIBS@
61 # Any extra object files your system needs.
62 extras = @LIBOBJS@
64 # Common prefix for machine-independent installed files.
65 prefix = @prefix@
66 # Common prefix for machine-dependent installed files.
67 exec_prefix = @exec_prefix@
69 # Directory to install `make' in.
70 bindir = $(exec_prefix)/bin
71 # Directory to find libraries in for `-lXXX'.
72 libdir = $(exec_prefix)/lib
73 # Directory to search by default for included makefiles.
74 includedir = $(prefix)/include
75 # Directory to install the Info files in.
76 infodir = $(prefix)/info
77 # Directory to install the man page in.
78 mandir = $(prefix)/man/man$(manext)
79 # Number to put on the man page filename.
80 manext = 1
81 # Prefix to put on installed `make' binary file name.
82 binprefix =
83 # Prefix to put on installed `make' man page file name.
84 manprefix = $(binprefix)
86 # Whether or not make needs to be installed setgid.
87 # The value should be either `true' or `false'.
88 # On many systems, the getloadavg function (used to implement the `-l'
89 # switch) will not work unless make is installed setgid kmem.
90 install_setgid = @NEED_SETGID@
91 # Install make setgid to this group so it can read /dev/kmem.
92 group = @KMEM_GROUP@
94 # Program to install `make'.
95 INSTALL_PROGRAM = @INSTALL_PROGRAM@
96 # Program to install the man page.
97 INSTALL_DATA = @INSTALL_DATA@
98 # Generic install program.
99 INSTALL = @INSTALL@
101 # Program to format Texinfo source into Info files.
102 MAKEINFO = makeinfo
103 # Program to format Texinfo source into DVI files.
104 TEXI2DVI = texi2dvi
106 # Programs to make tags files.
107 ETAGS = etags -w
108 CTAGS = ctags -w
110 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \
111 rule.o implicit.o default.o variable.o expand.o function.o \
112 vpath.o version.o ar.o arscan.o signame.o remote-$(REMOTE).o \
113 getopt.o getopt1.o glob/libglob.a \
114 $(ALLOCA) $(extras)
115 srcs = $(srcdir)/commands.c $(srcdir)/job.c $(srcdir)/dir.c \
116 $(srcdir)/file.c $(srcdir)/getloadavg.c $(srcdir)/misc.c \
117 $(srcdir)/main.c $(srcdir)/read.c $(srcdir)/remake.c \
118 $(srcdir)/rule.c $(srcdir)/implicit.c $(srcdir)/default.c \
119 $(srcdir)/variable.c $(srcdir)/expand.c $(srcdir)/function.c \
120 $(srcdir)/vpath.c $(srcdir)/version.c \
121 $(srcdir)/remote-$(REMOTE).c \
122 $(srcdir)/ar.c $(srcdir)/arscan.c \
123 $(srcdir)/signame.c $(srcdir)/signame.h getopt.c getopt1.c \
124 $(srcdir)/commands.h $(srcdir)/dep.h $(srcdir)/file.h \
125 $(srcdir)/job.h $(srcdir)/make.h $(srcdir)/rule.h \
126 $(srcdir)/variable.h $(ALLOCA_SRC) $(srcdir)/config.h.in
129 .SUFFIXES:
130 .SUFFIXES: .o .c .h .ps .dvi .info .texinfo
132 all: make
133 info: make.info
134 dvi: make.dvi
135 # Some makes apparently use .PHONY as the default goal if it is before `all'.
136 .PHONY: all check info dvi
138 make.info: make.texinfo
139 $(MAKEINFO) -I$(srcdir) $(srcdir)/make.texinfo -o make.info
141 make.dvi: make.texinfo
142 $(TEXI2DVI) $(srcdir)/make.texinfo
144 make.ps: make.dvi
145 dvi2ps make.dvi > make.ps
147 make: $(objs)
148 $(CC) $(LDFLAGS) $(objs) $(LOADLIBES) -o make.new
149 mv -f make.new make
151 # -I. is needed to find config.h in the build directory.
152 .c.o:
153 $(CC) $(defines) -c -I. -I$(srcdir) -I$(srcdir)/glob \
154 $(CPPFLAGS) $(CFLAGS) $< $(OUTPUT_OPTION)
156 # For some losing Unix makes.
157 SHELL = /bin/sh
158 @SET_MAKE@
160 glob/libglob.a: FORCE config.h
161 cd glob; $(MAKE) libglob.a
162 FORCE:
164 tagsrcs = $(srcs) $(srcdir)/remote-*.c
165 TAGS: $(tagsrcs)
166 $(ETAGS) $(tagsrcs)
167 tags: $(tagsrcs)
168 $(CTAGS) $(tagsrcs)
170 .PHONY: install installdirs
171 install: installdirs \
172 $(bindir)/$(binprefix)make $(infodir)/make.info \
173 $(mandir)/$(manprefix)make.$(manext)
175 installdirs:
176 $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)
178 $(bindir)/$(binprefix)make: make
179 $(INSTALL_PROGRAM) make $@.new
180 @if $(install_setgid); then \
181 if chgrp $(group) $@.new && chmod g+s $@.new; then \
182 echo "chgrp $(group) $@.new && chmod g+s $@.new"; \
183 else \
184 echo "$@ needs to be owned by group $(group) and setgid;"; \
185 echo "otherwise the \`-l' option will probably not work."; \
186 echo "You may need special privileges to install $@."; \
187 fi; \
188 else true; fi
189 # Some systems can't deal with renaming onto a running binary.
190 -rm -f $@.old
191 -mv $@ $@.old
192 mv $@.new $@
194 $(infodir)/make.info: make.info
195 if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
196 for file in $${dir}/make.info*; do \
197 name="`basename $$file`"; \
198 $(INSTALL_DATA) $$file \
199 `echo $@ | sed "s,make.info\$$,$$name,"`; \
200 done
201 # Run install-info only if it exists.
202 # Use `if' instead of just prepending `-' to the
203 # line so we notice real errors from install-info.
204 # We use `$(SHELL) -c' because some shells do not
205 # fail gracefully when there is an unknown command.
206 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
207 if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
208 install-info --infodir=$(infodir) $$dir/make.info; \
209 else true; fi
211 $(mandir)/$(manprefix)make.$(manext): make.man
212 $(INSTALL_DATA) $(srcdir)/make.man $@
215 loadavg: loadavg.c config.h
216 $(CC) $(defines) -DTEST -I. -I$(srcdir) $(CFLAGS) $(LDFLAGS) \
217 loadavg.c $(LOADLIBES) -o $@
218 # We copy getloadavg.c into a different file rather than compiling it
219 # directly because some compilers clobber getloadavg.o in the process.
220 loadavg.c: getloadavg.c
221 ln $(srcdir)/getloadavg.c loadavg.c || \
222 cp $(srcdir)/getloadavg.c loadavg.c
223 check-loadavg: loadavg
224 @echo The system uptime program believes the load average to be:
225 -uptime
226 @echo The GNU load average checking code believes:
227 ./loadavg
228 check: check-loadavg
231 .PHONY: clean realclean distclean mostlyclean
232 clean: glob-clean
233 -rm -f make loadavg *.o core make.dvi
234 distclean: clean glob-realclean
235 -rm -f Makefile config.h config.status build.sh stamp-config
236 -rm -f config.log config.cache
237 -rm -f TAGS tags
238 -rm -f make.?? make.??s make.log make.toc make.*aux
239 -rm -f loadavg.c
240 realclean: distclean
241 -rm -f make.info*
242 mostlyclean: clean
244 .PHONY: glob-clean glob-realclean
245 glob-clean glob-realclean:
246 cd glob; $(MAKE) $@
248 Makefile: config.status $(srcdir)/Makefile.in
249 $(SHELL) config.status
250 glob/Makefile: config.status $(srcdir)/glob/Makefile.in
251 $(SHELL) config.status
252 config.h: stamp-config ;
253 stamp-config: config.status $(srcdir)/config.h.in
254 $(SHELL) config.status
255 touch stamp-config
257 #configure: configure.in aclocal.m4
258 # cd $(srcdir) && autoconf $(ACFLAGS)
259 #config.h.in: configure.in aclocal.m4
260 # cd $(srcdir) && autoheader $(ACFLAGS)
262 # This tells versions [3.59,3.63) of GNU make not to export all variables.
263 .NOEXPORT:
265 # The automatically generated dependencies below may omit config.h
266 # because it is included with ``#include <config.h>'' rather than
267 # ``#include "config.h"''. So we add the explicit dependency to make sure.
268 $(objs): config.h
270 # Automatically generated dependencies will be put at the end of the file.
272 # Automatically generated dependencies.
273 commands.o: commands.c make.h dep.h commands.h file.h variable.h job.h
274 job.o: job.c make.h commands.h job.h file.h variable.h
275 dir.o: dir.c make.h
276 file.o: file.c make.h commands.h dep.h file.h variable.h
277 misc.o: misc.c make.h dep.h
278 main.o: main.c make.h commands.h dep.h file.h variable.h job.h \
279 getopt.h
280 read.o: read.c make.h commands.h dep.h file.h variable.h glob/glob.h
281 remake.o: remake.c make.h commands.h job.h dep.h file.h
282 rule.o: rule.c make.h commands.h dep.h file.h variable.h rule.h
283 implicit.o: implicit.c make.h rule.h dep.h file.h
284 default.o: default.c make.h rule.h dep.h file.h commands.h variable.h
285 variable.o: variable.c make.h commands.h variable.h dep.h file.h
286 expand.o: expand.c make.h commands.h file.h variable.h
287 function.o: function.c make.h variable.h dep.h commands.h job.h
288 vpath.o: vpath.c make.h file.h variable.h
289 version.o: version.c
290 ar.o: ar.c make.h file.h dep.h
291 arscan.o: arscan.c make.h
292 signame.o: signame.c signame.h
293 remote-stub.o: remote-stub.c make.h commands.h
294 getopt.o: getopt.c
295 getopt1.o: getopt1.c getopt.h
296 getloadavg.o: getloadavg.c