make/compatMakefile

185 lines
5.5 KiB
Text
Raw Normal View History

1992-02-15 22:12:14 +00:00
# Copyright (C) 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
# 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
#
1992-06-17 02:07:35 +00:00
srcdir = @srcdir@
VPATH = $(srcdir)
CFLAGS = -g
1992-02-15 22:12:14 +00:00
LDFLAGS = -g
# 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.
1992-08-27 21:51:23 +00:00
defines = @DEFS@ -DLIBDIR=\"$(libdir)\"
1992-02-15 22:12:14 +00:00
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-06-11 05:30:32 +00:00
# If your system doesn't have alloca, or the one provided is bad,
# get it from the Emacs distribution and define this.
ALLOCA = @ALLOCA@
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
# If there are remote execution facilities defined,
# enable them with switches here (see remote-*.c).
REMOTE =
# 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.
exec_prefix = /usr/local
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-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.
manext = l
# Install make setgid to this group so it can read /dev/kmem.
group = kmem
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-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 \
remote.o rule.o implicit.o default.o variable.o expand.o \
1992-06-16 01:30:57 +00:00
function.o vpath.o version.o ar.o arscan.o $(GETOPT) $(extras)
1992-06-17 02:07:35 +00:00
srcs = $(srcdir)/commands.c $(srcdir)/job.c $(srcdir)/dir.c \
$(srcdir)/file.c $(srcdir)/getloadavg.c $(srcdir)/misc.c \
1992-06-22 20:34:09 +00:00
$(srcdir)/main.c $(srcdir)/read.c $(srcdir)/remake.c \
1992-06-17 02:07:35 +00:00
$(srcdir)/remote.c $(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)/ar.c $(srcdir)/arscan.c $(GETOPT_SRC) \
$(srcdir)/commands.h $(srcdir)/dep.h $(srcdir)/file.h \
$(srcdir)/job.h $(srcdir)/make.h $(srcdir)/rule.h \
$(srcdir)/variable.h
1992-02-15 22:12:14 +00:00
.SUFFIXES:
.SUFFIXES: .o .c .h .ps .dvi .texinfo
.PHONY: all doc
all: make
doc: make.info make.dvi
# Take your pick.
#makeinfo = emacs -batch -f batch-texinfo-format make.texinfo
makeinfo = makeinfo make.texinfo
make.info: make.texinfo
$(makeinfo)
make.dvi: make.texinfo
-tex make.texinfo
texindex make.cp make.fn make.ky make.pg make.tp make.vr
-tex make.texinfo
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-06-17 02:07:35 +00:00
.c.o:
$(CC) $(CFLAGS) $(defines) -c -I$(srcdir) $< $(OUTPUT_OPTION)
1992-02-15 22:12:14 +00:00
remote.o: remote.c
1992-07-10 01:40:44 +00:00
$(CC) $(CFLAGS) $(defines) $(REMOTE) -c -I$(srcdir) $(srcdir)/remote.c
1992-02-15 22:12:14 +00:00
# For some losing Unix makes.
MAKE = make
glob/libglob.a: force
1992-06-17 02:07:35 +00:00
cd glob; $(MAKE) CC='$(CC)' CFLAGS='$(CFLAGS) -I..' \
CPPFLAGS='$(defines)' \
1992-06-25 21:10:49 +00:00
libglob.a
1992-02-15 22:12:14 +00:00
force:
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
.PHONY: install
install: $(bindir)/$(instname) $(mandir)/$(instname).$(manext)
$(bindir)/$(instname): make
1992-06-11 05:30:32 +00:00
$(INSTALL_PROGRAM) make $@.new
1992-02-15 22:12:14 +00:00
# These are necessary for load-average checking to work on most Unix machines.
-chgrp $(group) $@.new
-chmod g+s $@.new
mv $@.new $@
$(mandir)/$(instname).$(manext): make.man
1992-06-11 05:30:32 +00:00
$(INSTALL_DATA) make.man $@
1992-02-15 22:12:14 +00:00
1992-07-10 01:40:44 +00:00
.PHONY: clean realclean distclean mostlyclean
1992-02-15 22:12:14 +00:00
clean: glob-clean
-rm -f make *.o core
realclean: clean glob-realclean
1992-05-20 00:51:39 +00:00
-rm -f TAGS tags make.info* make-* make.dvi
1992-02-15 22:12:14 +00:00
-rm -f make.?? make.??s make.log make.toc make.*aux
1992-07-10 01:40:44 +00:00
distclean: realclean
-rm -f configure Makefile
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
1992-02-15 22:12:14 +00:00
# Automatically generated dependencies will be put at the end of the file.