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
|
# Makefile.in for rep's Lisp files
# Copyright (C) 1998 John Harper <john@dcs.warwick.ac.uk>
# $Id: Makefile.in,v 1.28 2002/06/22 23:12:26 jsh Exp $
#
# This file is part of rep.
#
# rep 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.
#
# rep 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 rep; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
top_builddir=..
VPATH=@srcdir@:@top_srcdir@
INSTALL_FILES = *.jl *.jlc
INSTALL_DIRS := . rep rep rep/lang rep/vm rep/vm/compiler rep/io \
rep/io/file-handlers rep/io/file-handlers/remote rep/i18n \
rep/data rep/www rep/util rep/mail rep/threads rep/system \
rep/net rep/test rep/xml scheme unscheme
all : lisp
lisp : ../src/.libexec
$(COMPILE_ENV) $(rep_prog) --batch --no-rc \
-l rep.vm.compiler -f compile-assembler
$(COMPILE_ENV) $(rep_prog) --batch --no-rc \
-l rep.vm.compiler -f compile-compiler
$(COMPILE_ENV) $(rep_prog) --batch --no-rc \
-l rep.vm.compiler -f compile-lisp-lib
../src/.libexec :
( cd ../src && $(MAKE) .libexec )
check : all
$(COMPILE_ENV) $(rep_prog) --batch --check
install : all installdirs
for d in $(INSTALL_DIRS); do \
for f in $(foreach x,$(INSTALL_FILES),$$d/$(x)); do \
$(INSTALL_DATA) $$f $(DESTDIR)$(replispdir)/$$d; \
done; \
done
$(SHELL) $(top_srcdir)/install-aliases -l . $(DESTDIR)$(replispdir)
installdirs : mkinstalldirs
$(SHELL) $< $(foreach x,$(INSTALL_DIRS),$(DESTDIR)$(replispdir)/$(x))
uninstall :
for d in $(INSTALL_DIRS); do \
for f in $(foreach x,$(INSTALL_FILES),$$d/$(x)); do \
rm -f $(DESTDIR)$(replispdir)/$$f; \
done; \
done
clean :
rm -f `find . \( -name '*.jlc' -o -name '*~' -o -name core \) -print`
distclean : clean
rm -f Makefile
realclean : distclean
.PHONY : all lisp install uninstall clean realclean distclean
|