make/compatMakefile

267 lines
8.5 KiB
Text
Raw Normal View History

1993-05-21 22:15:48 +00:00
# NOTE: If you have no `make' program at all to process this makefile, run
# `build.sh' instead.
#
1993-01-06 22:39:31 +00:00
# Copyright (C) 1988, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
1992-02-15 22:12:14 +00:00
# This file is part of GNU Make.
#
# GNU Make is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# GNU Make is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Make; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Makefile for GNU Make
#
1993-03-08 19:50:11 +00:00
# Ultrix 2.2 make doesn't expand the value of VPATH.
VPATH = @srcdir@
srcdir = $(VPATH)
1992-06-17 02:07:35 +00:00
1993-01-06 22:39:31 +00:00
CC = @CC@
1993-01-05 19:54:03 +00:00
1993-01-21 23:50:44 +00:00
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
1992-02-15 22:12:14 +00:00
# Define these for your system as follows:
# -DNO_ARCHIVES To disable `ar' archive support.
# -DNO_FLOAT To avoid using floating-point numbers.
# -DENUM_BITFIELDS If the compiler isn't GCC but groks enum foo:2.
# Some compilers apparently accept this
# without complaint but produce losing code,
# so beware.
# NeXT 1.0a uses an old version of GCC, which required -D__inline=inline.
1993-05-31 22:48:16 +00:00
# See also `config.h'.
1993-01-12 17:31:40 +00:00
defines = @DEFS@ -DLIBDIR=\"$(libdir)\" -DINCLUDEDIR=\"$(includedir)\"
1992-02-15 22:12:14 +00:00
1993-03-11 19:25:31 +00:00
# Which flavor of remote job execution support to use.
# The code is found in `remote-$(REMOTE).c'.
REMOTE = @REMOTE@
1992-05-09 04:02:30 +00:00
# If you are using the GNU C library, or have the GNU getopt functions in
# your C library, you can comment these out.
GETOPT = getopt.o getopt1.o
1992-06-17 02:07:35 +00:00
GETOPT_SRC = $(srcdir)/getopt.c $(srcdir)/getopt1.c $(srcdir)/getopt.h
1992-05-09 04:02:30 +00:00
1992-10-12 17:46:23 +00:00
# If you are using the GNU C library, or have the GNU glob functions in
# your C library, you can comment this out. GNU make uses special hooks
# into the glob functions to be more efficient (by using make's directory
# cache for globbing), so you must use the GNU functions even if your
# system's C library has the 1003.2 glob functions already. Also, the glob
# functions in the AIX and HPUX C libraries are said to be buggy.
GLOB = glob/libglob.a
1992-12-23 18:18:27 +00:00
# If your system doesn't have alloca, or the one provided is bad, define this.
1992-06-11 05:30:32 +00:00
ALLOCA = @ALLOCA@
1992-12-23 18:18:27 +00:00
ALLOCA_SRC = $(srcdir)/alloca.c
1992-06-11 05:30:32 +00:00
1992-02-15 22:12:14 +00:00
# If your system needs extra libraries loaded in, define them here.
# System V probably need -lPW for alloca. HP-UX 7.0's alloca in
# libPW.a is broken on HP9000s300 and HP9000s400 machines. Use
1992-06-11 05:30:32 +00:00
# alloca.c instead on those machines.
LOADLIBES = @LIBS@
1992-02-15 22:12:14 +00:00
# Any extra object files your system needs.
1992-06-11 05:30:32 +00:00
extras = @LIBOBJS@
1992-02-15 22:12:14 +00:00
1992-06-11 05:30:32 +00:00
# Common prefix for machine-independent installed files.
prefix = /usr/local
# Common prefix for machine-dependent installed files.
1993-02-02 01:49:11 +00:00
exec_prefix = $(prefix)
1992-02-15 22:12:14 +00:00
# Name under which to install GNU make.
instname = make
# Directory to install `make' in.
1992-06-11 05:30:32 +00:00
bindir = $(exec_prefix)/bin
1992-08-27 21:51:23 +00:00
# Directory to find libraries in for `-lXXX'.
libdir = $(exec_prefix)/lib
1992-08-28 00:14:44 +00:00
# Directory to search by default for included makefiles.
includedir = $(prefix)/include
1993-02-04 01:16:36 +00:00
# Directory to install the Info files in.
infodir = $(prefix)/info
1992-02-15 22:12:14 +00:00
# Directory to install the man page in.
1992-08-10 21:05:08 +00:00
mandir = $(prefix)/man/man$(manext)
1992-02-15 22:12:14 +00:00
# Number to put on the man page filename.
1992-12-22 23:31:46 +00:00
manext = 1
1992-02-15 22:12:14 +00:00
1993-01-11 19:45:52 +00:00
# Whether or not make needs to be installed setgid.
# The value should be either `true' or `false'.
# On many systems, the getloadavg function (used to implement the `-l'
# switch) will not work unless make is installed setgid kmem.
install_setgid = @NEED_SETGID@
1992-02-15 22:12:14 +00:00
# Install make setgid to this group so it can read /dev/kmem.
1993-02-21 19:49:42 +00:00
group = @KMEM_GROUP@
1992-02-15 22:12:14 +00:00
1992-06-11 05:30:32 +00:00
# Program to install `make'.
INSTALL_PROGRAM = @INSTALL_PROGRAM@
# Program to install the man page.
INSTALL_DATA = @INSTALL_DATA@
1992-06-17 02:07:35 +00:00
# Generic install program.
INSTALL = @INSTALL@
1992-06-11 05:30:32 +00:00
1992-12-17 21:16:40 +00:00
# Program to format Texinfo source into Info files.
MAKEINFO = makeinfo
# Program to format Texinfo source into DVI files.
TEXI2DVI = texi2dvi
1992-05-11 19:20:28 +00:00
# Programs to make tags files.
1992-06-16 01:30:57 +00:00
ETAGS = etags -tw
CTAGS = ctags -tw
1992-05-11 19:20:28 +00:00
1992-07-10 01:40:44 +00:00
objs = commands.o job.o dir.o file.o misc.o main.o read.o remake.o \
1993-03-11 19:25:31 +00:00
rule.o implicit.o default.o variable.o expand.o function.o \
vpath.o version.o ar.o arscan.o signame.o remote-$(REMOTE).o \
1992-10-12 20:32:29 +00:00
$(GLOB) $(GETOPT) $(ALLOCA) $(extras)
srcs = $(srcdir)/commands.c $(srcdir)/job.c $(srcdir)/dir.c \
$(srcdir)/file.c $(srcdir)/getloadavg.c $(srcdir)/misc.c \
$(srcdir)/main.c $(srcdir)/read.c $(srcdir)/remake.c \
1993-03-11 19:25:31 +00:00
$(srcdir)/rule.c $(srcdir)/implicit.c $(srcdir)/default.c \
$(srcdir)/variable.c $(srcdir)/expand.c $(srcdir)/function.c \
$(srcdir)/vpath.c $(srcdir)/version.c \
$(srcdir)/remote-$(REMOTE).c \
1992-12-29 18:59:17 +00:00
$(srcdir)/ar.c $(srcdir)/arscan.c \
$(srcdir)/signame.c $(srcdir)/signame.h $(GETOPT_SRC) \
1992-10-12 20:32:29 +00:00
$(srcdir)/commands.h $(srcdir)/dep.h $(srcdir)/file.h \
$(srcdir)/job.h $(srcdir)/make.h $(srcdir)/rule.h \
1992-12-29 18:59:17 +00:00
$(srcdir)/variable.h $(ALLOCA_SRC) $(srcdir)/config.h.in
1992-02-15 22:12:14 +00:00
.SUFFIXES:
1993-05-31 22:48:16 +00:00
.SUFFIXES: .o .c .h .ps .dvi .info .texinfo
1992-02-15 22:12:14 +00:00
all: make
1992-11-04 02:00:19 +00:00
check: # No tests.
1992-12-17 21:16:40 +00:00
info: make.info
dvi: make.dvi
1993-07-30 05:29:32 +00:00
# Some makes apparently use .PHONY as the default goal is it is before `all'.
.PHONY: all check info dvi
1992-02-15 22:12:14 +00:00
make.info: make.texinfo
1993-03-12 20:54:25 +00:00
$(MAKEINFO) -I$(srcdir) $(srcdir)/make.texinfo -o make.info
1992-02-15 22:12:14 +00:00
make.dvi: make.texinfo
1992-12-17 21:16:40 +00:00
$(TEXI2DVI) $(srcdir)/make.texinfo
1992-02-15 22:12:14 +00:00
make.ps: make.dvi
dvi2ps make.dvi > make.ps
1992-06-11 05:30:32 +00:00
make: $(objs)
$(CC) $(LDFLAGS) $(objs) $(LOADLIBES) -o make.new
1992-02-15 22:12:14 +00:00
mv -f make.new make
1992-12-28 23:25:58 +00:00
# -I. is needed to find config.h in the build directory.
.c.o:
1993-01-18 19:54:17 +00:00
$(CC) $(defines) -c -I. -I$(srcdir) -I$(srcdir)/glob \
$(CFLAGS) $< $(OUTPUT_OPTION)
1992-02-15 22:12:14 +00:00
# For some losing Unix makes.
1993-02-04 18:01:50 +00:00
SHELL = /bin/sh
1992-02-15 22:12:14 +00:00
MAKE = make
1993-08-01 20:17:31 +00:00
glob/libglob.a: FORCE config.h
1992-06-17 02:07:35 +00:00
cd glob; $(MAKE) CC='$(CC)' CFLAGS='$(CFLAGS) -I..' \
1992-12-28 23:25:58 +00:00
CPPFLAGS='$(CPPFLAGS) -DHAVE_CONFIG_H' \
1992-06-25 21:10:49 +00:00
libglob.a
1993-08-01 20:17:31 +00:00
FORCE:
1992-02-15 22:12:14 +00:00
1992-06-17 02:07:35 +00:00
tagsrcs = $(srcs) $(srcdir)/remote-*.c
1992-03-10 22:15:32 +00:00
TAGS: $(tagsrcs)
1992-05-11 19:20:28 +00:00
$(ETAGS) $(tagsrcs)
1992-03-10 22:15:32 +00:00
tags: $(tagsrcs)
1992-05-11 19:20:28 +00:00
$(CTAGS) $(tagsrcs)
1992-02-15 22:12:14 +00:00
1993-05-20 01:30:41 +00:00
.PHONY: install installdirs
install: installdirs \
1993-07-26 02:23:47 +00:00
$(bindir)/$(instname) $(infodir)/make.info \
1993-02-04 01:16:36 +00:00
$(mandir)/$(instname).$(manext)
1992-02-15 22:12:14 +00:00
1993-05-20 01:30:41 +00:00
installdirs:
1993-06-08 00:24:19 +00:00
$(SHELL) ${srcdir}/mkinstalldirs $(bindir) $(infodir) $(mandir)
1993-05-20 01:30:41 +00:00
1992-02-15 22:12:14 +00:00
$(bindir)/$(instname): make
1992-06-11 05:30:32 +00:00
$(INSTALL_PROGRAM) make $@.new
1993-06-08 00:24:19 +00:00
@if $(install_setgid); then \
1993-06-11 18:42:04 +00:00
if chgrp $(group) $@.new && chmod g+s $@.new; then \
1993-06-08 00:24:19 +00:00
echo "chgrp $(group) $@.new && chmod g+s $@.new"; \
else \
echo "$@ needs to be owned by group $(group) and setgid;"; \
echo "otherwise the \`-l' option will probably not work."; \
echo "You may need special priveleges to install $@."; \
fi; \
else true; fi
1993-02-21 19:49:42 +00:00
# Some systems can't deal with renaming onto a running binary.
-rm -f $@.old
-mv $@ $@.old
1992-02-15 22:12:14 +00:00
mv $@.new $@
1993-07-26 02:23:47 +00:00
$(infodir)/make.info: make.info
1993-05-31 22:48:16 +00:00
if [ -r ./make.info ]; then dir=.; else dir=$(srcdir); fi; \
for file in $${dir}/make.info*; do \
name="`basename $$file`"; \
1993-02-04 01:16:36 +00:00
$(INSTALL_DATA) $$file \
1993-07-26 02:23:47 +00:00
`echo $@ | sed "s,make.info\$$,$$name,"`; \
1993-02-04 01:16:36 +00:00
done
1993-07-26 02:23:47 +00:00
# Run install-info only if it exists.
# Use `if' instead of just prepending `-' to the
# line so we notice real errors from install-info.
1993-07-30 05:29:32 +00:00
# We use `$(SHELL) -c' because some shells do not
# fail gracefully when there is an unknown command.
1993-07-30 20:55:50 +00:00
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
1993-07-26 02:23:47 +00:00
install-info --infodir=$(infodir) $$d/foo.info; \
else true; fi
1993-02-04 01:16:36 +00:00
1992-02-15 22:12:14 +00:00
$(mandir)/$(instname).$(manext): make.man
1992-12-22 23:31:46 +00:00
$(INSTALL_DATA) $(srcdir)/make.man $@
1992-02-15 22:12:14 +00:00
1993-08-01 20:17:31 +00:00
loadavg: getloadavg.c config.h
$(CC) $(defines) -DTEST -I. -I$(srcdir) $(CFLAGS) $(LDFLAGS) \
1993-08-02 20:49:11 +00:00
$(srcdir)/getloadavg.c $(LOADLIBES) -o $@
1993-08-01 20:17:31 +00:00
check-loadavg: loadavg
@echo The system uptime program believes the load average to be:
-uptime
@echo The GNU load average checking code believes:
./loadavg
check: check-loadavg
1992-07-10 01:40:44 +00:00
.PHONY: clean realclean distclean mostlyclean
1992-02-15 22:12:14 +00:00
clean: glob-clean
1993-08-03 23:18:21 +00:00
-rm -f make *.o core make.info* make.dvi
1992-12-17 21:16:40 +00:00
distclean: clean glob-realclean
1993-05-24 20:17:29 +00:00
-rm -f Makefile config.h config.status build.sh stamp-config
1993-08-03 23:18:21 +00:00
-rm -f TAGS tags
1992-02-15 22:12:14 +00:00
-rm -f make.?? make.??s make.log make.toc make.*aux
1992-12-17 21:16:40 +00:00
realclean: distclean
1992-07-10 01:40:44 +00:00
mostlyclean: clean
1992-02-15 22:12:14 +00:00
.PHONY: glob-clean glob-realclean
glob-clean glob-realclean:
cd glob; $(MAKE) $@
1992-06-17 02:07:35 +00:00
Makefile: config.status $(srcdir)/Makefile.in
$(SHELL) config.status
1993-04-07 19:31:50 +00:00
config.h: stamp-config ;
stamp-config: config.status $(srcdir)/config.h.in
1992-12-20 22:58:53 +00:00
$(SHELL) config.status
1993-04-07 19:31:50 +00:00
touch stamp-config
1992-12-20 22:58:53 +00:00
configure: configure.in
1993-03-28 22:06:13 +00:00
autoconf $(ACFLAGS)
1992-12-20 22:58:53 +00:00
config.h.in: configure.in
1993-03-28 22:06:13 +00:00
autoheader $(ACFLAGS)
1992-06-17 02:07:35 +00:00
1993-01-05 19:54:03 +00:00
# This tells versions [3.59,3.63) of GNU make not to export all variables.
.NOEXPORT:
1992-02-15 22:12:14 +00:00
# Automatically generated dependencies will be put at the end of the file.