(GETOPT, GETOPT_SRC, GLOB): Variables removed.
[make.git] / GNUmakefile
blob7358f4621a3528500baee100cc48b2d9034e03e6
1 # GNU Make-specific makefile for GNU Make.
3 # Copyright (C) 1990, 91, 92, 93, 94, 95 Free Software Foundation, Inc.
4 # This file is part of GNU Make.
6 # GNU Make is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
11 # GNU Make is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Make; see the file COPYING. If not, write to
18 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20 .PHONY: default
21 default:
23 # Set `ARCH' to a string for the type of machine.
24 ifndef ARCH
25 ifdef machine
26 ARCH = $(machine)
27 endif # machine
28 endif # not ARCH
30 override srcdir := .
31 override CC := $(CC)
33 ifeq ($(ARCH),hp300)
34 #customs=yes
35 endif
36 ifdef customs
37 override REMOTE := cstms
38 else
39 override REMOTE := stub
40 endif
42 # Get most of the information from the Unix-compatible makefile.
43 include compatMakefile
45 MAKE = $(MAKE_COMMAND) $(MAKEOVERRIDES)
47 # Remove autoconf magic.
48 prefix = /usr/local
49 exec_prefix = $(prefix)
50 extras := $(filter-out getloadavg.o @%@,$(extras)) getloadavg.o
51 LOADLIBES := $(filter-out @%@,$(LOADLIBES))
52 ALLOCA := $(filter-out @%@,$(ALLOCA))
53 CPPFLAGS := $(filter-out @%@,$(defines) $(CPPFLAGS)) -DHAVE_CONFIG_H
55 ifdef AC_MACRODIR
56 configure config.h.in: $(patsubst %,$(AC_MACRODIR)/%.m4,acspecific acgeneral)
57 config.h.in: $(AC_MACRODIR)/acconfig.h
58 endif
59 configure: configure.in aclocal.m4
60 autoconf $(ACFLAGS)
61 test -d CVS && cvs commit -m'autoconf $(ACFLAGS)' $@
62 config.h.in: configure.in aclocal.m4
63 autoheader $(ACFLAGS)
64 test -d CVS && cvs commit -m'autoheader $(ACFLAGS)' $@
66 ifdef customs
67 defines := $(defines) -Ipmake/customs -Ipmake/lib/include
68 LOADLIBES := $(addprefix pmake/customs/,customslib.o rpc.o xlog.o) \
69 pmake/lib/sprite/libsprite.a
70 endif
72 ifdef ARCH
74 ifndef no_libc
75 libc_dir = /home/gd2/gnu/libc/$(ARCH)
76 ifneq ($(wildcard $(libc_dir)),)
77 ifneq ($(wildcard $(libc_dir)/works-for-make),)
78 #CPPFLAGS := -I$(libc_dir)/include
79 #LDFLAGS := -nostdlib $(libc_dir)/lib/start.o
80 #LOADLIBES := $(LOADLIBES) \
81 # $(libc_dir)/lib/mcheck-init.o \
82 # $(libc_dir)/lib/libc.a \
83 # -lgcc \
84 # $(libc_dir)/lib/libc.a
85 CC := $(CC) -b glibc
87 # getopt is in libc.
88 GETOPT =
89 #GETOPT_SRC = Don't clear this or dist will break.
91 # glob is in libc too.
92 GLOB =
94 else
96 endif # works-for-make
97 endif # $(libc_dir)
98 endif # !no_libc
100 # We know the type of machine, so put the binaries in subdirectories.
101 $(ARCH)/%.o: %.c
102 $(COMPILE.c) -Iglob $< $(OUTPUT_OPTION)
103 $(ARCH)/glob/libglob.a: FORCE
104 $(MAKE) -C $(@D) $(@F)
105 FORCE:
106 objs := $(addprefix $(ARCH)/,$(objs))
107 prog := $(ARCH)/make
109 archpfx = $(ARCH)/
111 $(archpfx)load.o: load.c
112 $(COMPILE.c) $(LOAD_AVG) $< -o $@
113 $(archpfx)load.dep: load.c
114 $(mkdep) $(LOAD_AVG) $< | sed 's,$*\.o,& $@,' > $@
116 CPPFLAGS := -I$(ARCH) -Iglob -DHAVE_CONFIG_H $(filter-out @%@,$(CPPFLAGS))
118 ifneq "$(wildcard $(ARCH)/makefile)" ""
119 include $(ARCH)/makefile
120 endif
121 objs := $(objs) $(addprefix $(ARCH)/,$(ALLOCA) $(extras))
123 else # Not ARCH
124 prog := make
125 endif
127 ifneq "$(findstring gcc,$(CC))" ""
128 CFLAGS = -g -Wall -Wtraditional -Wid-clash-31 -Wpointer-arith \
129 -Wbad-function-cast -Wconversion
130 else
131 CFLAGS = -g
132 endif
133 LDFLAGS = -g
135 # Define the command to make dependencies.
136 ifneq "$(findstring gcc,$(CC))" ""
137 # Don't include system directories.
138 mkdep-nolib = $(CC) -MM $(CPPFLAGS)
139 else
140 mkdep-nolib = $(mkdep)
141 endif
142 mkdep = $(CC) -M $(CPPFLAGS)
144 depfiles = $(patsubst %.o,%.dep,$(filter %.o,$(objs)))
147 .PHONY: default
148 default: $(prog)
150 $(prog): $(objs) $(globdep) #$(addprefix $(ARCH)/,gmalloc.o mcheck.o)
151 $(CC) $(LDFLAGS) $^ $(globlib) $(LOADLIBES) -o $@.new
152 mv -f $@.new $@
154 globfiles = $(addprefix glob/,COPYING.LIB configure.in configure Makefile.in \
155 configure.bat glob.c fnmatch.c glob.h fnmatch.h)
156 $(globfiles): stamp-glob ;
157 stamp-glob: /home/gd/gnu/libc/posix/glob.tar
158 -rm -f stamp-glob glob/*
159 tar xvf $< glob
160 cvs commit -m'Updated from libc' glob
161 touch $@
162 /home/gd/gnu/libc/posix/glob.tar: force
163 $(MAKE) -C $(@D) $(@F) no_deps=t
164 .PHONY: force
165 force:
167 # Make the Unix-compatible Makefile to be distributed by appending
168 # the automatically-generated dependencies to compatMakefile.
169 ifeq ($(mkdep),$(mkdep-nolib))
170 nolib-deps = $(depfiles)
171 else
172 %.dep: %.c
173 $(mkdep-nolib) $< | sed -e 's,$*\.o,$(@:.dep=.o) $@,' > $(@:.dep=.dtm)
174 mv -f $(@:.dep=.dtm) $@
175 nolib-deps = $(patsubst $(archpfx)%,%,$(depfiles))
176 endif
177 # The distributed Makefile.in should contain deps for remote-stub only.
178 Makefile.in: compatMakefile $(nolib-deps:remote-%.dep=remote-stub.dep)
179 (sed 's/^MAKE[ ]*=.*$$/@SET_MAKE@/' $<; \
180 echo '# Automatically generated dependencies.'; \
181 sed -e 's/ [^ ]*\.dep//' -e 's=$(archpfx)==' $(filter-out $<,$^) \
182 ) > $@
183 cvs commit -mRegenerated $@
185 .SUFFIXES: .dep
186 # Maintain the automatically-generated dependencies.
187 ifndef no_deps
188 include $(depfiles)
189 endif
190 $(archpfx)%.dep: %.c
191 $(mkdep) $< | sed 's,$*\.o,$(@:.dep=.o) $@,' > $@
193 ETAGS = etags -T # for v19 etags
195 # Run the tests.
196 .PHONY: tests
197 testdir := $(shell ls -d1 make-test-?.? | sort -n +0.10 -0.11 +0.12 | tail -1l)
198 tests:# $(testdir)/run_make_tests.pl $(prog)
199 # cd $(<D); MAKELEVEL=0 perl $(<F)
201 build.sh.in: build.template compatMakefile
202 sed -e 's@%objs%@$(filter-out remote-% $(GLOB) $(ALLOCA) $(extras),\
203 $(patsubst $(archpfx)%,%,$(objs)))\
204 $(patsubst %.c,%.o,$(filter %.c,$(globfiles)))@' \
205 $< > $@.new
206 chmod a+x $@.new
207 mv -f $@.new $@
208 cvs commit -mRegenerated $@
210 # Make the distribution tar files.
212 .PHONY: dist
213 # Figure out the version number from the source of `version.c'.
214 version := \
215 $(strip $(shell sed -e '/=/!d' -e 's/^.*"\(.*\)";$$/\1/' < version.c))
216 tarfiles := make # make-doc
217 tarfiles := $(addsuffix -$(version).tar,$(tarfiles))
218 tarfiles := $(tarfiles:%=%.gz) # no more compress $(tarfiles:%=%.Z)
219 # Depend on default and doc so we don't ship anything that won't compile.
220 dist: cvs-mark default info dvi tests tarfiles
221 .PHONY: tarfiles
222 tarfiles: $(tarfiles)
224 distfiles=README INSTALL COPYING ChangeLog NEWS \
225 configure Makefile.in configure.in build.sh.in mkinstalldirs \
226 configh.dos configure.bat \
227 aclocal.m4 acconfig.h $(srcs) remote-*.c $(globfiles) \
228 make.texinfo make-stds.texi \
229 make.?? make.??s make.toc make.aux make.man texinfo.tex TAGS tags \
230 install-sh \
231 make.info make.info*
233 ifndef dist-flavor
234 dist-flavor = alpha
235 endif
236 .PHONY: cvs-mark
237 cvs-mark: $(distfiles)
238 cvs tag -F make-$(subst .,-,$(version))
240 dist: local-inst
241 .PHONY: local-inst
242 local-inst: $(prog)
243 install -c -g kmem -o $(USER) -m 2755 $< /usr/local/gnubin/make
245 # Put the alpha distribution files in the anonymous FTP directory.
246 alpha-files = $(tarfiles) GNUmakefile compatMakefile $(testdir).tar.Z
247 dist: alpha
248 .PHONY: alpha
249 alpha-dir := ~ftp/gnu
250 alpha-files := $(addprefix $(alpha-dir)/,$(alpha-files))
251 alpha: $(alpha-dir) $(alpha-files)
252 $(alpha-dir)/%: %
253 @rm -f $@
254 cp $< $@
256 # Implicit rule to make README and README-doc.
257 %: %.template version.c
258 rm -f $@
259 sed 's/VERSION/$(version)/' < $< > $@
260 # Make sure I don't edit it by accident.
261 chmod a-w $@
262 cvs commit -m'Regenerated for $(version)' $@
264 define make-tar
265 @rm -fr make-$(version)
266 ln -s . make-$(version)
267 tar cvhof $@ $(addprefix make-$(version)/,$^)
268 rm -f make-$(version)
269 endef
271 %.Z: %; compress -c $< > $@
272 %.gz: %; gzip -9 -c -v $< > $@
274 make-$(version).tar: $(distfiles)
275 $(make-tar)
277 ifneq (,)
278 tests := $(filter-out %~,$(wildcard tests/*))
279 make-tests-$(version).tar.Z: $(tests)
280 @rm -fr make-tests-$(version)
281 ln -s tests make-tests-$(version)
282 tar cvhf $(@:.Z=) $(patsubst tests/%,make-tests-$(version)/%,$^)
283 rm -f make-tests-$(version)
284 compress -f $(@:.Z=)
285 endif
287 $(archpfx)loadtest: $(archpfx)load.o