1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
#
# $Id: Makefile.in,v 3.1.2.1 1997/04/30 06:24:58 hzoli Exp $
#
# Makefile for top level of zsh distribution
#
# Copyright (c) 1995-1997 Richard Coleman
# All rights reserved.
#
# Permission is hereby granted, without written agreement and without
# license or royalty fees, to use, copy, modify, and distribute this
# software and to distribute modified versions of this software for any
# purpose, provided that the above copyright notice and the following
# two paragraphs appear in all copies of this software.
#
# In no event shall Richard Coleman or the Zsh Development Group be liable
# to any party for direct, indirect, special, incidental, or consequential
# damages arising out of the use of this software and its documentation,
# even if Richard Coleman and the Zsh Development Group have been advised of
# the possibility of such damage.
#
# Richard Coleman and the Zsh Development Group specifically disclaim any
# warranties, including, but not limited to, the implied warranties of
# merchantability and fitness for a particular purpose. The software
# provided hereunder is on an "as is" basis, and Richard Coleman and the
# Zsh Development Group have no obligation to provide maintenance,
# support, updates, enhancements, or modifications.
#
SHELL = /bin/sh
@SET_MAKE@
srcdir = @srcdir@
VPATH = @srcdir@
# ========== USER CONFIGURATION SECTION ==========
#
# If `make' is executed in the directory containing this Makefile,
# any changes made in this section will override the values of
# these parameters in makefiles in any of the subdirectories.
prefix = @prefix@
exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
MODDIR = $(libdir)/zsh/$(VERSION)
infodir = @infodir@
mandir = @mandir@
manext = 1
VERSION = @VERSION@
CC = @CC@
CPPFLAGS = @CPPFLAGS@
DEFS = @DEFS@
CFLAGS = @CFLAGS@
LDFLAGS = @LDFLAGS@
EXTRA_LDFLAGS = @EXTRA_LDFLAGS@
DLCFLAGS = @DLCFLAGS@
DLLDFLAGS = @DLLDFLAGS@
LIBLDFLAGS = @LIBLDFLAGS@
EXELDFLAGS = @EXELDFLAGS@
LIBS = @LIBS@
DL_EXT = @DL_EXT@
DLLD = @DLLD@
AWK = @AWK@
YODL = @YODL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
# ========== YOU SHOULDN'T HAVE TO CHANGE ANYTHING BELOW HERE ==========
# flags passed to recursive makes in subdirectories
MAKEDEFS = \
prefix='$(prefix)' exec_prefix='$(exec_prefix)' bindir='$(bindir)' \
libdir='$(libdir)' MODDIR='$(MODDIR)' infodir='$(infodir)' mandir='$(mandir)' \
manext='$(manext)' VERSION='$(VERSION)' \
CC='$(CC)' CPPFLAGS='$(CPPFLAGS)' DEFS='$(DEFS)' CFLAGS='$(CFLAGS)' \
LDFLAGS='$(LDFLAGS)' EXTRA_LDFLAGS='$(EXTRA_LDFLAGS)' \
DLCFLAGS='$(DLCFLAGS)' DLLDFLAGS='$(DLLDFLAGS)' \
LIBLDFLAGS='$(LIBLDFLAGS)' EXELDFLAGS='$(EXELDFLAGS)' \
LIBS='$(LIBS)' DL_EXT='$(DL_EXT)' DLLD='$(DLLD)' \
AWK='$(AWK)' YODL='$(YODL)' INSTALL='$(INSTALL)' \
INSTALL_PROGRAM='$(INSTALL_PROGRAM)' INSTALL_DATA='$(INSTALL_DATA)'
.SUFFIXES:
# subdirectories in distribution
SUBDIRS = Src Doc Etc Functions StartupFiles Misc Util
# all files in this directory included in the distribution
DIST = README INSTALL META-FAQ ChangeLog configure.in Makefile.in aclocal.m4 \
config.guess config.sub acconfig.h config.h.in install-sh stamp-h.in \
mkinstalldirs configure
# ========== DEPENDENCIES FOR BUILDING AND INSTALLING ==========
# default target
all: config.h Makefile $(SUBDIRS)
$(SUBDIRS): FORCE
@cd $@ && $(MAKE) $(MAKEDEFS)
FORCE:
# prepare module configuration
prep:
@cd Src && $(MAKE) $(MAKEDEFS) $@
# install/uninstall everything
install: install.bin install.modules install.man install.info
uninstall: uninstall.bin uninstall.modules uninstall.man uninstall.info
# install/uninstall just the binary
install.bin uninstall.bin:
@cd Src && $(MAKE) $(MAKEDEFS) $@
# install/uninstall just the modules
install.modules uninstall.modules:
@cd Src && $(MAKE) $(MAKEDEFS) $@
# install/uninstall just the man pages
install.man uninstall.man:
@cd Doc && $(MAKE) $(MAKEDEFS) $@
# install/uninstall just the info pages
install.info uninstall.info:
@cd Doc && $(MAKE) $(MAKEDEFS) $@
# ========== DEPENDENCIES FOR CLEANUP ==========
mostlyclean: mostlyclean-recursive mostlyclean-top
clean: clean-recursive clean-top
distclean: distclean-recursive distclean-top
realclean: realclean-recursive realclean-top
superclean: superclean-recursive superclean-top
mostlyclean-top:
rm -f *~
clean-top: mostlyclean-top
distclean-top: clean-top
rm -f Makefile config.h config.status config.log config.cache stamp-h distname rcsdistname
realclean-top: distclean-top
superclean-top: realclean-top
cd $(srcdir) && rm -f config.h.in stamp-h.in configure *~
mostlyclean-recursive clean-recursive distclean-recursive realclean-recursive superclean-recursive:
@target=`echo $@ | sed s/-recursive//`; \
for subdir in $(SUBDIRS); do \
(cd $$subdir && $(MAKE) $(MAKEDEFS) $$target) || exit 1; \
done
# ========== DEPENDENCIES FOR MAINTENANCE ==========
Makefile: Makefile.in config.status
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
config.status: configure Src/version.h
./config.status --recheck
configure: configure.in aclocal.m4 aczsh.m4
cd $(srcdir) && autoconf
config.h: stamp-h
stamp-h: config.h.in config.status
CONFIG_FILES= CONFIG_HEADERS=config.h ./config.status
config.h.in: stamp-h.in
stamp-h.in: configure.in acconfig.h aclocal.m4 aczsh.m4
cd $(srcdir) && autoheader
echo > $@
# create tag files for vi and emacs
tags:
cd Src && $(MAKE) $@
check: test
test:
@echo zsh test suite not available yet
FTPDIR = /home/ftp/pub/zsh
FTP_DIST = $(FTPDIR)/zsh-$(VERSION)-beta.tar.gz
FTP_RCS = $(FTPDIR)/zsh-RCS.tar.gz
FTP_DIFF = $(FTPDIR)/zsh-$(VERSION)-beta.diff.gz
# build zsh distribution
dist: Src tags
@echo "Begin building zsh distribution"
Src/zsh -o extendedglob -c 'cd $(srcdir) ; \
ln -sf . zsh-$(VERSION) ; \
tar cf - zsh-$(VERSION)/**/RCS/*~*/Doc/RCS/zsh*.man,v(D:s@RCS/@@:s/,v//) | \
gzip > $(FTP_DIST) ; \
ln -sf $${$${:-$(FTP_DIST)}#$(FTPDIR)/} $(FTPDIR)/zsh-beta.tar.gz ; \
rm -f zsh-$(VERSION)'
@echo "Done building zsh distribution"
# build RCS controlled source distribution
dist-rcs: Src tags
@echo "Begin building zsh distribution (RCS source)"
Src/zsh -o extendedglob -c 'cd $(srcdir) ; \
ln -sf . zsh-RCS ; \
tar cf - zsh-RCS/**/RCS | gzip > $(FTP_RCS) ; \
rm -f zsh-RCS'
@echo "Done building zsh distribution (RCS source)"
# make patch against the previous release
dist-diff: Src
@echo "Making patch against the previous release"
Src/zsh -o extendedglob -c 'cd $(srcdir) ; \
VERSION=$${(M)$${:-$(VERSION)}##<->.<->.<->} ; \
pl=$${(M)VERSION%%[0-9]##} ; \
: $${prevrel:=$${VERSION%%[0-9]##}$$((pl-1))} ; \
(rcsdiff -kk -qc -r$$prevrel -r **/RCS/(^(FAQ|tags|TAGS|zsh*.man|zsh.texi)),v(D:s@RCS/@@:s/,v//) ; \
rcsdiff -qc -r$$prevrel -r Etc/FAQ) | \
gzip > $(FTP_DIFF) ; \
rm -f $(FTPDIR)/zsh-$${prevrel}-beta.tar.gz'
check-rcs: $(DIST) Src
@echo Checking if there are different working files and rcs files
Src/zsh -o extendedglob -c 'cd $(srcdir) ; \
integer diffs=0 ; \
for i in **/RCS/(^(tags|TAGS|zsh*.man|zsh.texi)),v(D:s@RCS/@@:s/,v//) ; do \
if [[ ! -f $$i ]] then \
co $$i ; \
elif ! rcsdiff -q --brief $$i ; then \
let diffs++ ; \
fi ; \
done ; \
if ((diffs)) then exit diffs ; fi'
md5sum:
cd $(FTPDIR) ; md5sum *.gz > MD5SUM
$(FTPDIR)/zsh-doc.tar.gz: $(srcdir)/Doc/zsh.texi
if test -d Doc/zsh-doc ; then \
cd Doc ; \
make everything ; \
cp zsh*.html /http/htdocs/zsh-manual ; \
mv zsh*.html zsh*.ps zsh.dvi zsh.info* zsh-doc ; \
tar cf - zsh-doc | gzip > $@ ; \
fi
release: check-rcs dist dist-rcs dist-diff $(FTPDIR)/zsh-doc.tar.gz md5sum
cd $(srcdir) && cp -p META-FAQ Etc/FAQ $(FTPDIR)
cd $(FTPDIR) && \
sed 's/zsh-3\.1\.[0-9][0-9]*/zsh-$(VERSION)/' README > README.new && \
mv README.new README
|