1 # NOTE: If you have no `make' program at all to process this makefile, run
4 # Copyright (C) 1988, 89, 91, 92, 93, 94, 1995 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)
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.
27 # This must repeat the value, because configure will remove `VPATH = .'.
38 # Define these for your system as follows:
39 # -DNO_ARCHIVES To disable `ar' archive support.
40 # -DNO_FLOAT To avoid using floating-point numbers.
41 # -DENUM_BITFIELDS If the compiler isn't GCC but groks enum foo:2.
42 # Some compilers apparently accept this
43 # without complaint but produce losing code,
45 # NeXT 1.0a uses an old version of GCC, which required -D__inline=inline.
46 # See also `config.h'.
49 # Which flavor of remote job execution support to use.
50 # The code is found in `remote-$(REMOTE).c'.
53 # If you are using the GNU C library, or have the GNU getopt functions in
54 # your C library, you can comment these out.
55 GETOPT = getopt.o getopt1.o
56 GETOPT_SRC = $(srcdir)getopt.c $(srcdir)getopt1.c $(srcdir)getopt.h
58 # If you are using the GNU C library, or have the GNU glob functions in
59 # your C library, you can comment this out. GNU make uses special hooks
60 # into the glob functions to be more efficient (by using make's directory
61 # cache for globbing), so you must use the GNU functions even if your
62 # system's C library has the 1003.2 glob functions already. Also, the glob
63 # functions in the AIX and HPUX C libraries are said to be buggy.
64 GLOB = Lib glob/glob.lib
66 # If your system doesn't have alloca, or the one provided is bad, define this.
68 ALLOCA_SRC = $(srcdir)alloca.c
70 # If your system needs extra libraries loaded in, define them here.
71 # System V probably need -lPW for alloca. HP-UX 7.0's alloca in
72 # libPW.a is broken on HP9000s300 and HP9000s400 machines. Use
73 # alloca.c instead on those machines.
76 # Any extra object files your system needs.
79 # Common prefix for machine-independent installed files.
81 # Common prefix for machine-dependent installed files.
84 # Directory to install `make' in.
86 # Directory to find libraries in for `-lXXX'.
88 # Directory to search by default for included makefiles.
90 # Directory to install the Info files in.
92 # Directory to install the man page in.
94 # Number to put on the man page filename.
96 # Prefix to put on installed `make' binary file name.
98 # Prefix to put on installed `make' man page file name.
99 manprefix = $(binprefix)
101 # Whether or not make needs to be installed setgid.
102 # The value should be either `true' or `false'.
103 # On many systems, the getloadavg function (used to implement the `-l'
104 # switch) will not work unless make is installed setgid kmem.
105 install_setgid = false
106 # Install make setgid to this group so it can read /dev/kmem.
109 # Program to install `make'.
110 INSTALL_PROGRAM = copy
111 # Program to install the man page.
113 # Generic install program.
116 # Program to format Texinfo source into Info files.
118 # Program to format Texinfo source into DVI files.
121 # Programs to make tags files.
125 objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \
126 rule.o implicit.o default.o variable.o expand.o function.o \
127 vpath.o version.o ar.o arscan.o signame.o remote-$(REMOTE).o \
128 $(GLOB) $(GETOPT) $(ALLOCA) $(extras)
129 srcs = $(srcdir)commands.c $(srcdir)job.c $(srcdir)dir.c \
130 $(srcdir)file.c $(srcdir)getloadavg.c $(srcdir)misc.c \
131 $(srcdir)main.c $(srcdir)read.c $(srcdir)remake.c \
132 $(srcdir)rule.c $(srcdir)implicit.c $(srcdir)default.c \
133 $(srcdir)variable.c $(srcdir)expand.c $(srcdir)function.c \
134 $(srcdir)vpath.c $(srcdir)version.c \
135 $(srcdir)remote-$(REMOTE).c \
136 $(srcdir)ar.c $(srcdir)arscan.c \
137 $(srcdir)signame.c $(srcdir)signame.h $(GETOPT_SRC) \
138 $(srcdir)commands.h $(srcdir)dep.h $(srcdir)file.h \
139 $(srcdir)job.h $(srcdir)make.h $(srcdir)rule.h \
140 $(srcdir)variable.h $(ALLOCA_SRC) $(srcdir)config.h.in
144 .SUFFIXES: .o .c .h .ps .dvi .info .texinfo
149 # Some makes apparently use .PHONY as the default goal if it is before `all'.
150 .PHONY: all check info dvi
152 make.info: make.texinfo
153 $(MAKEINFO) -I$(srcdir) $(srcdir)make.texinfo -o make.info
155 make.dvi: make.texinfo
156 $(TEXI2DVI) $(srcdir)make.texinfo
159 dvi2ps make.dvi > make.ps
161 make: $(objs) glob/glob.lib
162 $(CC) Link $(LDFLAGS) $(objs) $(LOADLIBES) To make.new
166 # -I. is needed to find config.h in the build directory.
168 $(CC) $(defines) IDir "" IDir $(srcdir)glob \
169 $(CPPFLAGS) $(CFLAGS) $< $(OUTPUT_OPTION)
177 tagsrcs = $(srcs) $(srcdir)remote-*.c
183 .PHONY: install installdirs
187 loadavg: loadavg.c config.h
188 $(CC) $(defines) -DTEST -I. -I$(srcdir) $(CFLAGS) $(LDFLAGS) \
189 loadavg.c $(LOADLIBES) -o $@
192 -$(RM) -f make loadavg *.o core make.dvi
194 distclean: clean glob-realclean
195 -$(RM) -f Makefile config.h config.status build.sh stamp-config
196 -$(RM) -f config.log config.cache
198 -$(RM) -f make.?? make.??s make.log make.toc make.*aux
206 .PHONY: glob-clean glob-realclean
208 glob-clean glob-realclean:
214 # The automatically generated dependencies below may omit config.h
215 # because it is included with ``#include <config.h>'' rather than
216 # ``#include "config.h"''. So we add the explicit dependency to make sure.
219 # Automatically generated dependencies will be put at the end of the file.
221 # Automatically generated dependencies.
222 commands.o: commands.c make.h dep.h filedef.h variable.h job.h \
225 job.o: job.c make.h job.h filedef.h commands.h variable.h
229 file.o: file.c make.h dep.h filedef.h job.h commands.h variable.h
231 misc.o: misc.c make.h dep.h
233 main.o: main.c make.h dep.h filedef.h variable.h job.h commands.h \
236 read.o: read.c make.h dep.h filedef.h job.h commands.h variable.h \
239 remake.o: remake.c make.h filedef.h job.h commands.h dep.h
241 rule.o: rule.c make.h dep.h filedef.h job.h commands.h variable.h \
244 implicit.o: implicit.c make.h rule.h dep.h filedef.h
246 default.o: default.c make.h rule.h dep.h filedef.h job.h commands.h \
249 variable.o: variable.c make.h dep.h filedef.h job.h commands.h \
252 expand.o: expand.c make.h filedef.h job.h commands.h variable.h
254 function.o: function.c make.h filedef.h variable.h dep.h job.h \
257 vpath.o: vpath.c make.h filedef.h variable.h
261 ar.o: ar.c make.h filedef.h dep.h
263 arscan.o: arscan.c make.h
265 signame.o: signame.c signame.h
267 remote-stub.o: remote-stub.c make.h filedef.h job.h commands.h
271 getopt1.o : getopt1.c getopt.h
273 getloadavg.o: getloadavg.c
275 amiga.o: amiga.c make.h variable.h amiga.h