home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 5
/
FreshFish_July-August1994.bin
/
bbs
/
gnu
/
sh-utils-1.10-src.lha
/
src
/
amiga
/
sh-utils-1.10
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1994-07-10
|
4KB
|
117 lines
# Master Makefile for the GNU shell programming utilities.
# Copyright (C) 1991, 1992, 1993 Free Software Foundation, Inc.
# This program 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.
# This program 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 this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
srcdir = @srcdir@
VPATH = @srcdir@
@SET_MAKE@
prefix = /gnu
exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
datadir = $(prefix)/lib
mandir = $(prefix)/man/man1
SHELL = /bin/sh
DISTFILES = COPYING COPYING.LIB ChangeLog Makefile.in README INSTALL \
NEWS configure configure.in config.h.in acconfig.h mkinstalldirs install.sh
# Redundant stuff for making only selected programs.
PROGS = basename date dirname echo env expr false groups hostname id logname \
pathchk printenv printf pwd sleep tee test true users whoami \
yes @PROGS@
# Subdirectories to run make in for the primary targets.
SUBDIRS = lib src man
all:
@for dir in $(SUBDIRS); do \
echo making $@ in $$dir ; \
(cd $$dir; $(MAKE) $@) ; \
done
info:
install-info:
dvi:
check:
installcheck:
$(PROGS):
@cd lib; $(MAKE) all
@cd src; $(MAKE) $@
config.h: stamp-config ;
stamp-config: config.status $(srcdir)/config.h.in
CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
touch stamp-config
Makefile: config.status Makefile.in
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
config.status: configure
$(SHELL) config.status --recheck
#configure: configure.in ## Comment-me-out in distribution
# cd $(srcdir); autoconf ## Comment-me-out in distribution
#config.h.in: configure.in ## Comment-me-out in distribution
# cd $(srcdir); autoheader ## Comment-me-out in distribution
# Make sure all installation directories, e.g. $(bindir) actually exist by
# making them if necessary.
installdirs:
$(SHELL) $(srcdir)/mkinstalldirs \
$(bindir) $(datadir) $(libdir) $(infodir) $(mandir)
install:: installdirs
install uninstall TAGS clean mostlyclean distclean realclean::
@for dir in $(SUBDIRS); do \
echo making $@ in $$dir ; \
(cd $$dir; $(MAKE) $@) ; \
done
distclean realclean::
rm -f Makefile config.status config.h stamp-config
dist: $(DISTFILES)
echo sh-utils-`sed -e '/version_string/!d' \
-e 's/[^0-9.]*\([0-9.a-z]*\).*/\1/' -e q src/version.c` > .fname
rm -rf `cat .fname`
mkdir `cat .fname`
ln $(DISTFILES) `cat .fname`
rm -f `cat .fname`/Makefile.in
sed 's/^.*#$(empty)# Comment.*/#&/' Makefile.in \
> `cat .fname`/Makefile.in
@for dir in $(SUBDIRS); do \
mkdir `cat .fname`/$$dir; \
(cd $$dir; $(MAKE) $@); \
done
tar --gzip -chvf `cat .fname`.tar.gz `cat .fname`
rm -rf `cat .fname` .fname
# Tell versions [3.59,3.63) of GNU make not to export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: