Move include of config.h before all others.
[make.git] / Makefile.in
blob4140afecdf0045afc260eb59e83da89d6d9d0fcc
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, 1995 Free Software Foundation, Inc.
5 # This file is part of GNU Make.
6 #
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 you are using the GNU C library, or have the GNU getopt functions in
52 # your C library, you can comment these out.
53 GETOPT = getopt.o getopt1.o
54 GETOPT_SRC = $(srcdir)/getopt.c $(srcdir)/getopt1.c $(srcdir)/getopt.h
56 # If you are using the GNU C library, or have the GNU glob functions in
57 # your C library, you can comment this out. GNU make uses special hooks
58 # into the glob functions to be more efficient (by using make's directory
59 # cache for globbing), so you must use the GNU functions even if your
60 # system's C library has the 1003.2 glob functions already. Also, the glob
61 # functions in the AIX and HPUX C libraries are said to be buggy.
62 GLOB = glob/libglob.a
64 # If your system doesn't have alloca, or the one provided is bad, define this.
65 ALLOCA = @ALLOCA@
66 ALLOCA_SRC = $(srcdir)/alloca.c
68 # If your system needs extra libraries loaded in, define them here.
69 # System V probably need -lPW for alloca. HP-UX 7.0's alloca in
70 # libPW.a is broken on HP9000s300 and HP9000s400 machines. Use
71 # alloca.c instead on those machines.
72 LOADLIBES = @LIBS@
74 # Any extra object files your system needs.
75 extras = @LIBOBJS@
77 # Common prefix for machine-independent installed files.
78 prefix = @prefix@
79 # Common prefix for machine-dependent installed files.
80 exec_prefix = @exec_prefix@
82 # Directory to install `make' in.
83 bindir = $(exec_prefix)/bin
84 # Directory to find libraries in for `-lXXX'.
85 libdir = $(exec_prefix)/lib
86 # Directory to search by default for included makefiles.
87 includedir = $(prefix)/include
88 # Directory to install the Info files in.
89 infodir = $(prefix)/info
90 # Directory to install the man page in.
91 mandir = $(prefix)/man/man$(manext)
92 # Number to put on the man page filename.
93 manext = 1
94 # Prefix to put on installed `make' binary file name.
95 binprefix =
96 # Prefix to put on installed `make' man page file name.
97 manprefix = $(binprefix)
99 # Whether or not make needs to be installed setgid.
100 # The value should be either `true' or `false'.
101 # On many systems, the getloadavg function (used to implement the `-l'
102 # switch) will not work unless make is installed setgid kmem.
103 install_setgid = @NEED_SETGID@
104 # Install make setgid to this group so it can read /dev/kmem.
105 group = @KMEM_GROUP@
107 # Program to install `make'.
108 INSTALL_PROGRAM = @INSTALL_PROGRAM@
109 # Program to install the man page.
110 INSTALL_DATA = @INSTALL_DATA@
111 # Generic install program.
112 INSTALL = @INSTALL@
114 # Program to format Texinfo source into Info files.
115 MAKEINFO = makeinfo
116 # Program to format Texinfo source into DVI files.
117 TEXI2DVI = texi2dvi
119 # Programs to make tags files.
120 ETAGS = etags -w
121 CTAGS = ctags -w
123 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \
124 rule.o implicit.o default.o variable.o expand.o function.o \
125 vpath.o version.o ar.o arscan.o signame.o remote-$(REMOTE).o \
126 $(GLOB) $(GETOPT) $(ALLOCA) $(extras)
127 srcs = $(srcdir)/commands.c $(srcdir)/job.c $(srcdir)/dir.c \
128 $(srcdir)/file.c $(srcdir)/getloadavg.c $(srcdir)/misc.c \
129 $(srcdir)/main.c $(srcdir)/read.c $(srcdir)/remake.c \
130 $(srcdir)/rule.c $(srcdir)/implicit.c $(srcdir)/default.c \
131 $(srcdir)/variable.c $(srcdir)/expand.c $(srcdir)/function.c \
132 $(srcdir)/vpath.c $(srcdir)/version.c \
133 $(srcdir)/remote-$(REMOTE).c \
134 $(srcdir)/ar.c $(srcdir)/arscan.c \
135 $(srcdir)/signame.c $(srcdir)/signame.h $(GETOPT_SRC) \
136 $(srcdir)/commands.h $(srcdir)/dep.h $(srcdir)/file.h \
137 $(srcdir)/job.h $(srcdir)/make.h $(srcdir)/rule.h \
138 $(srcdir)/variable.h $(ALLOCA_SRC) $(srcdir)/config.h.in
141 .SUFFIXES:
142 .SUFFIXES: .o .c .h .ps .dvi .info .texinfo
144 all: make
145 info: make.info
146 dvi: make.dvi
147 # Some makes apparently use .PHONY as the default goal if it is before `all'.
148 .PHONY: all check info dvi
150 make.info: make.texinfo
151 $(MAKEINFO) -I$(srcdir) $(srcdir)/make.texinfo -o make.info
153 make.dvi: make.texinfo
154 $(TEXI2DVI) $(srcdir)/make.texinfo
156 make.ps: make.dvi
157 dvi2ps make.dvi > make.ps
159 make: $(objs)
160 $(CC) $(LDFLAGS) $(objs) $(LOADLIBES) -o make.new
161 mv -f make.new make
163 # -I. is needed to find config.h in the build directory.
164 .c.o:
165 $(CC) $(defines) -c -I. -I$(srcdir) -I$(srcdir)/glob \
166 $(CPPFLAGS) $(CFLAGS) $< $(OUTPUT_OPTION)
168 # For some losing Unix makes.
169 SHELL = /bin/sh
170 @SET_MAKE@
172 glob/libglob.a: FORCE config.h
173 cd glob; $(MAKE) libglob.a
174 FORCE:
176 tagsrcs = $(srcs) $(srcdir)/remote-*.c
177 TAGS: $(tagsrcs)
178 $(ETAGS) $(tagsrcs)
179 tags: $(tagsrcs)
180 $(CTAGS) $(tagsrcs)
182 .PHONY: install installdirs
183 install: installdirs \
184 $(bindir)/$(binprefix)make $(infodir)/make.info \
185 $(mandir)/$(manprefix)make.$(manext)
187 installdirs:
188 $(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)
190 $(bindir)/$(binprefix)make: make
191 $(INSTALL_PROGRAM) make $@.new
192 @if $(install_setgid); then \
193 if chgrp $(group) $@.new && chmod g+s $@.new; then \
194 echo "chgrp $(group) $@.new && chmod g+s $@.new"; \
195 else \
196 echo "$@ needs to be owned by group $(group) and setgid;"; \
197 echo "otherwise the \`-l' option will probably not work."; \
198 echo "You may need special privileges to install $@."; \
199 fi; \
200 else true; fi
201 # Some systems can't deal with renaming onto a running binary.
202 -rm -f $@.old
203 -mv $@ $@.old
204 mv $@.new $@
206 $(infodir)/make.info: make.info
207 if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
208 for file in $${dir}/make.info*; do \
209 name="`basename $$file`"; \
210 $(INSTALL_DATA) $$file \
211 `echo $@ | sed "s,make.info\$$,$$name,"`; \
212 done
213 # Run install-info only if it exists.
214 # Use `if' instead of just prepending `-' to the
215 # line so we notice real errors from install-info.
216 # We use `$(SHELL) -c' because some shells do not
217 # fail gracefully when there is an unknown command.
218 if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
219 install-info --infodir=$(infodir) $$dir/make.info; \
220 else true; fi
222 $(mandir)/$(manprefix)make.$(manext): make.man
223 $(INSTALL_DATA) $(srcdir)/make.man $@
226 loadavg: loadavg.c config.h
227 $(CC) $(defines) -DTEST -I. -I$(srcdir) $(CFLAGS) $(LDFLAGS) \
228 loadavg.c $(LOADLIBES) -o $@
229 # We copy getloadavg.c into a different file rather than compiling it
230 # directly because some compilers clobber getloadavg.o in the process.
231 loadavg.c: getloadavg.c
232 ln $(srcdir)/getloadavg.c loadavg.c || \
233 cp $(srcdir)/getloadavg.c loadavg.c
234 check-loadavg: loadavg
235 @echo The system uptime program believes the load average to be:
236 -uptime
237 @echo The GNU load average checking code believes:
238 ./loadavg
239 check: check-loadavg
242 .PHONY: clean realclean distclean mostlyclean
243 clean: glob-clean
244 -rm -f make loadavg *.o core make.dvi
245 distclean: clean glob-realclean
246 -rm -f Makefile config.h config.status build.sh stamp-config
247 -rm -f config.log config.cache
248 -rm -f TAGS tags
249 -rm -f make.?? make.??s make.log make.toc make.*aux
250 -rm -f loadavg.c
251 realclean: distclean
252 -rm -f make.info*
253 mostlyclean: clean
255 .PHONY: glob-clean glob-realclean
256 glob-clean glob-realclean:
257 cd glob; $(MAKE) $@
259 Makefile: config.status $(srcdir)/Makefile.in
260 $(SHELL) config.status
261 glob/Makefile: config.status $(srcdir)/glob/Makefile.in
262 $(SHELL) config.status
263 config.h: stamp-config ;
264 stamp-config: config.status $(srcdir)/config.h.in
265 $(SHELL) config.status
266 touch stamp-config
268 #configure: configure.in aclocal.m4
269 # cd $(srcdir) && autoconf $(ACFLAGS)
270 #config.h.in: configure.in aclocal.m4
271 # cd $(srcdir) && autoheader $(ACFLAGS)
273 # This tells versions [3.59,3.63) of GNU make not to export all variables.
274 .NOEXPORT:
276 # The automatically generated dependencies below may omit config.h
277 # because it is included with ``#include <config.h>'' rather than
278 # ``#include "config.h"''. So we add the explicit dependency to make sure.
279 $(objs): config.h
281 # Automatically generated dependencies will be put at the end of the file.
283 # Automatically generated dependencies.
284 commands.o : commands.c make.h dep.h commands.h file.h variable.h job.h
285 job.o: job.c make.h commands.h job.h file.h variable.h
286 dir.o: dir.c make.h
287 file.o: file.c make.h commands.h dep.h file.h variable.h
288 misc.o: misc.c make.h dep.h
289 main.o: main.c make.h commands.h dep.h file.h variable.h job.h getopt.h
290 read.o: read.c make.h commands.h dep.h file.h variable.h glob/glob.h
291 remake.o: remake.c make.h commands.h job.h dep.h file.h
292 rule.o : rule.c make.h config.h commands.h dep.h file.h variable.h rule.h
293 implicit.o : implicit.c make.h rule.h dep.h file.h
294 default.o: default.c make.h rule.h dep.h file.h commands.h variable.h
295 variable.o : variable.c make.h commands.h variable.h dep.h file.h
296 expand.o: expand.c make.h commands.h file.h variable.h
297 function.o: function.c make.h variable.h dep.h commands.h job.h
298 vpath.o : vpath.c make.h file.h variable.h
299 version.o: version.c
300 ar.o : ar.c make.h file.h dep.h
301 arscan.o: arscan.c make.h
302 signame.o: signame.c signame.h
303 remote-stub.o : remote-stub.c make.h commands.h
304 getopt.o: getopt.c getopt.h
305 getopt1.o : getopt1.c getopt.h
306 getloadavg.o: getloadavg.c