Fri Mar 1 12:04:47 1996 Roland McGrath <roland@charlie-brown.gnu.ai.mit.edu>
[make.git] / GNUmakefile
blob76a27d25bce00cb639718b1358bc3837a48a51d8
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 libc-srcdir = /home/gd/gnu/libc
155 globfiles = $(addprefix glob/,COPYING.LIB configure.in configure Makefile.in \
156 configure.bat glob.c fnmatch.c glob.h fnmatch.h)
157 $(globfiles): stamp-glob ;
158 stamp-glob: $(libc-srcdir)/posix/glob.tar
159 -rm -f stamp-glob glob/*
160 tar xvf $< glob
161 cvs commit -m'Updated from libc' glob
162 touch $@
163 $(libc-srcdir)/posix/glob.tar: force
164 $(MAKE) -C $(@D) $(@F) no_deps=t
165 .PHONY: force
166 force:
168 # Make the Unix-compatible Makefile to be distributed by appending
169 # the automatically-generated dependencies to compatMakefile.
170 ifeq ($(mkdep),$(mkdep-nolib))
171 nolib-deps = $(depfiles)
172 else
173 %.dep: %.c
174 $(mkdep-nolib) $< | sed -e 's,$*\.o,$(@:.dep=.o) $@,' > $(@:.dep=.dtm)
175 mv -f $(@:.dep=.dtm) $@
176 nolib-deps = $(patsubst $(archpfx)%,%,$(depfiles))
177 endif
178 # The distributed Makefile.in should contain deps for remote-stub only.
179 Makefile.in: compatMakefile $(nolib-deps:remote-%.dep=remote-stub.dep)
180 (sed 's/^MAKE[ ]*=.*$$/@SET_MAKE@/' $<; \
181 echo '# Automatically generated dependencies.'; \
182 sed -e 's/ [^ ]*\.dep//' -e 's=$(archpfx)==' $(filter-out $<,$^) \
183 ) > $@
184 cvs commit -mRegenerated $@
186 .SUFFIXES: .dep
187 # Maintain the automatically-generated dependencies.
188 ifndef no_deps
189 include $(depfiles)
190 endif
191 $(archpfx)%.dep: %.c
192 $(mkdep) $< | sed 's,$*\.o,$(@:.dep=.o) $@,' > $@
194 ETAGS = etags -T # for v19 etags
196 # Run the tests.
197 .PHONY: tests
198 testdir := $(shell ls -d1 make-test-?.? | sort -n +0.10 -0.11 +0.12 | tail -1l)
199 tests:# $(testdir)/run_make_tests.pl $(prog)
200 # cd $(<D); MAKELEVEL=0 perl $(<F)
202 build.sh.in: build.template compatMakefile
203 sed -e 's@%objs%@$(filter-out remote-% $(GLOB) $(ALLOCA) $(extras),\
204 $(patsubst $(archpfx)%,%,$(objs)))\
205 $(patsubst %.c,%.o,$(filter %.c,$(globfiles)))@' \
206 $< > $@.new
207 chmod a+x $@.new
208 mv -f $@.new $@
209 cvs commit -mRegenerated $@
211 # Make the distribution tar files.
213 .PHONY: dist
214 # Figure out the version number from the source of `version.c'.
215 version := \
216 $(strip $(shell sed -e '/=/!d' -e 's/^.*"\(.*\)";$$/\1/' < version.c))
217 tarfiles := make # make-doc
218 tarfiles := $(addsuffix -$(version).tar,$(tarfiles))
219 tarfiles := $(tarfiles:%=%.gz) # no more compress $(tarfiles:%=%.Z)
220 # Depend on default and doc so we don't ship anything that won't compile.
221 dist: cvs-mark default info dvi tests tarfiles
222 .PHONY: tarfiles
223 tarfiles: $(tarfiles)
225 distfiles=README INSTALL COPYING ChangeLog NEWS \
226 configure Makefile.in configure.in build.sh.in mkinstalldirs \
227 configh.dos configure.bat \
228 aclocal.m4 acconfig.h $(srcs) remote-*.c $(globfiles) \
229 make.texinfo make-stds.texi \
230 make.?? make.??s make.toc make.aux make.man texinfo.tex TAGS tags \
231 install-sh \
232 make.info make.info*
234 ifndef dist-flavor
235 dist-flavor = alpha
236 endif
237 .PHONY: cvs-mark
238 cvs-mark: $(distfiles)
239 cvs tag -F make-$(subst .,-,$(version))
241 dist: local-inst
242 .PHONY: local-inst
243 local-inst: $(prog)
244 install -c -g kmem -o $(USER) -m 2755 $< /usr/local/gnubin/make
246 # Put the alpha distribution files in the anonymous FTP directory.
247 alpha-files = $(tarfiles) GNUmakefile compatMakefile $(testdir).tar.Z
248 dist: alpha
249 .PHONY: alpha
250 alpha-dir := ~ftp/gnu
251 alpha-files := $(addprefix $(alpha-dir)/,$(alpha-files))
252 alpha: $(alpha-dir) $(alpha-files)
253 $(alpha-dir)/%: %
254 @rm -f $@
255 cp $< $@
257 # Implicit rule to make README and README-doc.
258 %: %.template version.c
259 rm -f $@
260 sed 's/VERSION/$(version)/' < $< > $@
261 # Make sure I don't edit it by accident.
262 chmod a-w $@
263 cvs commit -m'Regenerated for $(version)' $@
265 define make-tar
266 @rm -fr make-$(version)
267 ln -s . make-$(version)
268 tar cvhof $@ $(addprefix make-$(version)/,$^)
269 rm -f make-$(version)
270 endef
272 %.Z: %; compress -c $< > $@
273 %.gz: %; gzip -9 -c -v $< > $@
275 make-$(version).tar: $(distfiles)
276 $(make-tar)
278 ifneq (,)
279 tests := $(filter-out %~,$(wildcard tests/*))
280 make-tests-$(version).tar.Z: $(tests)
281 @rm -fr make-tests-$(version)
282 ln -s tests make-tests-$(version)
283 tar cvhf $(@:.Z=) $(patsubst tests/%,make-tests-$(version)/%,$^)
284 rm -f make-tests-$(version)
285 compress -f $(@:.Z=)
286 endif
288 $(archpfx)loadtest: $(archpfx)load.o