: Makefile.SH generated from Jmake.tmpl and Jmakefile [jmake 3.0 PL70]
: $X-Id: Jmake.tmpl,v 3.0.1.3 1997/02/28 14:56:16 ram Exp $
case $CONFIG in
'')
if test -f config.sh; then TOP=.;
elif test -f ../config.sh; then TOP=..;
elif test -f ../../config.sh; then TOP=../..;
elif test -f ../../../config.sh; then TOP=../../..;
elif test -f ../../../../config.sh; then TOP=../../../..;
else
echo "Can't find config.sh."; exit 1
fi
. $TOP/config.sh
;;
esac
case "$0" in
*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
esac
CURRENT=.
DIR=`echo $CURRENT/ | sed -e 's/\.\///g'`
echo "Extracting ${DIR}Makefile (with variable substitutions)"
DATE=`date`
$spitshell >Makefile <<!GROK!THIS!
########################################################################
# Makefile generated from Makefile.SH on $DATE
SHELL = /bin/sh
JMAKE = jmake
TOP = .
CURRENT = $CURRENT
DIR = $DIR
########################################################################
# Parameters set by Configure -- edit config.sh if changes are needed
CTAGS = ctags
MAKE = make
MV = $mv
RM = $rm -f
########################################################################
# Automatically generated parameters -- do not edit
TESTDIR = $testdir
SUBDIRS = \$(SUBDIRS)
AWK = $awk
!GROK!THIS!
$spitshell >>Makefile <<'!NO!SUBS!'
########################################################################
# Jmake rules for building libraries, programs, scripts, and data files
# $X-Id: Jmake.rules,v 3.0.1.6 1997/02/28 14:56:01 ram Exp $
########################################################################
# Start of Jmakefile
############################ -*- Mode: Makefile -*- ###########################
## $Basename: Jmakefile $
## $Revision: 1.11 $
## Author : Ulrich Pfeifer
## Created On : Tue Mar 8 14:40:27 1994
## Last Modified By: Ulrich Pfeifer
## Last Modified On: Wed May 7 21:03:31 1997
## Language : Makefile
## Update Count : 184
## Status : Unknown, Use with caution!
##
## (C) Copyright 1997, Ulrich Pfeifer, all rights reserved.
##
###############################################################################
SUBDIRS = lib server indexer ui bin doc/original-TM-wais/manl $(TESTDIR)
# $Format: "VERSION = $ProjectVersion$"$
VERSION = 2.2.14
all::
depend::
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(SUBDIRS) ;\
do \
(cd $$i ; echo "Depending" "in $(DIR)$$i..."; \
$(MAKE) $(MFLAGS) depend); \
done
test::
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(SUBDIRS);\
do \
echo "Making "test" in $(DIR)$$i..."; \
(cd $$i || exit 1; \
if test ! -f Makefile; then /bin/sh Makefile.SH; fi; \
$(MAKE) $(MFLAGS) test) \
done
local_clobber::
$(RM) install mkdep
TAGS: MANIFEST
etags --defines `$(AWK) '{print $$1}' MANIFEST | grep -v '_[ly].c$$' | grep -v '\.dvi$$' | grep -v '\.ps$$' `
local_clean::
$(RM) TAGS
dist : MANIFEST.new
makedist -c /tmp/freeWAIS-sf-$(VERSION) -v -q
find /tmp/freeWAIS-sf-$(VERSION) -type d -exec chmod 755 {} \;
rm -f freeWAIS-sf-$(VERSION).tar.gz
( cd /tmp ; tar -cvf - freeWAIS-sf-$(VERSION) ) | gzip -9c > freeWAIS-sf-$(VERSION).tar.gz
rm -rf /tmp/freeWAIS-sf-$(VERSION)
########################################################################
# Common rules for all Makefiles -- do not edit
emptyrule::
clean: sub_clean local_clean
realclean: sub_realclean local_realclean
clobber: sub_clobber local_clobber
local_clean::
$(RM) core *~ *.o
local_realclean:: local_clean
$(RM) -r UU
local_clobber:: local_realclean
$(RM) config.sh config.h
$(RM) -r .config
$(RM) Makefile
Makefile.SH: Jmakefile
-@if test -f $(TOP)/.package; then \
if test -f Makefile.SH; then \
echo " $(RM) Makefile.SH~; $(MV) Makefile.SH Makefile.SH~"; \
$(RM) Makefile.SH~; $(MV) Makefile.SH Makefile.SH~; \
fi; \
echo " $(JMAKE) -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT)" ; \
$(JMAKE) -DTOPDIR=$(TOP) -DCURDIR=$(CURRENT) ; \
else touch $@; exit 0; fi
Makefile: Makefile.SH
/bin/sh Makefile.SH
tags::
$(CTAGS) -w *.[ch]
$(CTAGS) -xw *.[ch] > tags
local_clobber::
$(RM) tags
########################################################################
# Rules for building in sub-directories -- do not edit
subdirs:
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(SUBDIRS) ;\
do \
(cd $$i ; echo $(VERB) "in $(DIR)$$i..."; \
$(MAKE) $(MFLAGS) $(FLAGS) $(TARGET)); \
done
install::
@$(MAKE) subdirs TARGET=install VERB="Installing" FLAGS=
deinstall::
@$(MAKE) subdirs TARGET=deinstall VERB="Deinstalling" FLAGS=
install.man::
@$(MAKE) subdirs TARGET=install.man VERB="Installing man pages" FLAGS=
deinstall.man::
@$(MAKE) subdirs TARGET=deinstall.man VERB="Deinstalling man pages" FLAGS=
sub_clean::
@$(MAKE) subdirs TARGET=clean VERB="Cleaning" FLAGS=
@echo "Back to $(CURRENT) for "clean...
sub_realclean::
@$(MAKE) subdirs TARGET=realclean VERB="Real cleaning" FLAGS=
@echo "Back to $(CURRENT) for "realclean...
sub_clobber::
@$(MAKE) subdirs TARGET=clobber VERB="Clobbering" FLAGS=
@echo "Back to $(CURRENT) for "clobber...
tag::
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(SUBDIRS) ;\
do \
(cd $$i ; echo "Tagging" "in $(DIR)$$i..."; \
$(MAKE) $(MFLAGS) tag); \
done
Makefiles::
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(SUBDIRS);\
do \
echo "Making "Makefiles" in $(DIR)$$i..."; \
(cd $$i || exit 1; \
if test ! -f Makefile; then /bin/sh Makefile.SH; fi; \
$(MAKE) $(MFLAGS) Makefiles) \
done
Makefiles.SH:: Makefile.SH
@case '${MFLAGS}' in *[ik]*) set +e;; esac; \
for i in $(SUBDIRS);\
do \
case "$(DIR)$$i/" in \
*/*/*/*/) newtop=../../../..;; \
*/*/*/) newtop=../../..;; \
*/*/) newtop=../..;; \
*/) newtop=..;; \
esac; \
case "$(TOP)" in \
/*) newtop="$(TOP)" ;; \
esac; \
echo "Making Makefiles.SH in $(DIR)$$i..."; \
(cd $$i || exit 1; $(MAKE) $(MFLAGS) -f ../Makefile \
Makefile TOP=$$newtop CURRENT=$(DIR)$$i;\
$(MAKE) $(MFLAGS) Makefiles.SH) \
done
all::
@$(MAKE) subdirs TARGET=all VERB="Making all" FLAGS=
!NO!SUBS!
chmod 644 Makefile
$eunicefix Makefile
syntax highlighted by Code2HTML, v. 0.9.1