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
|
# Makefile.in for Jade version 4
# Copyright (C) 1998 John Harper <john@dcs.warwick.ac.uk>
# $Id: Makefile.in,v 1.18 1999/12/06 18:59:54 john Exp $
#
# This file is part of Jade.
#
# Jade 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.
#
# Jade 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 Jade; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
top_builddir=.
ALL_SUBDIRS = intl src lisp man
INSTALL_SUBDIRS = src lisp man
all : build.h rules.mk DOC.dir
set -e; for dir in $(ALL_SUBDIRS); do \
[ -d $$dir ] && ( cd $$dir && $(MAKE) $@ ); \
done
build.h : build-info config.status
$(top_srcdir)/build-info $(host_type) $(version) \
'$(repdir)' '$(replispdir)' '$(repexecdir)' \
'$(repdocfile)' '$(repcommonexecdir)' >$@
rules.mk : rules.mk.sh config.status
$(SHELL) $(top_srcdir)/rules.mk.sh '$(repdir)' \
'$(repcommonexecdir)' '$(repdocfile)' >$@
install : all installdirs
set -e; for dir in $(INSTALL_SUBDIRS); do \
( cd $$dir && $(MAKE) $@ ); \
done
$(INSTALL_DATA) DOC.pag $(DESTDIR)$(repdir)/$(version)
$(INSTALL_DATA) DOC.dir $(DESTDIR)$(repdir)/$(version)
$(INSTALL_SCRIPT) libtool $(DESTDIR)$(repcommonexecdir)
$(INSTALL_DATA) rules.mk $(DESTDIR)$(repcommonexecdir)
$(INSTALL_DATA) rep.m4 $(DESTDIR)$(aclocaldir)
installdirs : $(top_srcdir)/mkinstalldirs
$(SHELL) $(top_srcdir)/mkinstalldirs $(DESTDIR)$(repdir)/$(version) \
$(DESTDIR)$(bindir) $(DESTDIR)$(aclocaldir) \
$(DESTDIR)$(repcommonexecdir)
uninstall :
-set -e; for dir in $(INSTALL_SUBDIRS); do \
( cd $$dir && $(MAKE) $@ ); \
done
rm -rf $(DESTDIR)$(repdir)/$(version)
rm -f $(DESTDIR)$(repcommonexecdir)/rules.mk
rm -f $(DESTDIR)$(repcommonexecdir)/libtool
rm -f $(DESTDIR)$(aclocaldir)/rep.m4
DOC.dir : repdoc
src/repdoc DOC `find . -name '*.c' -print`
repdoc :
( cd src && $(MAKE) repdoc )
NEWS : man/news.texi
( cd man && $(MAKE) ../NEWS )
tar :
tar -zcT FILES -f librep.tar.gz
nobak :
rm -f `find . -name '*~' -print`
clean :
-set -e; for dir in $(ALL_SUBDIRS); do \
[ -d $$dir ] && ( cd $$dir && $(MAKE) $@ ); \
done
rm -f *~ NEWS DOC.* TAGS build.h
realclean :
-set -e; for dir in $(ALL_SUBDIRS); do \
[ -d $$dir ] && ( cd $$dir && $(MAKE) $@ ); \
done
rm -f config.cache config.h config.log config.status Makefile libtool
rm -f *~ NEWS DOC.* TAGS build.h rules.mk librep.spec
TAGS :
etags --language=c `find . -name '*.[ch]' -print` \
--language=lisp `find . -name '*.jl' -print`
.PHONY: install uninstall tar nobak clean realclean TAGS
|