This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
yap-6.3/LGPL/Makefile.in

60 lines
1.3 KiB
Makefile
Raw Normal View History

#
# default base directory for YAP installation
#
ROOTDIR = @prefix@
#
# where the binary should be
#
BINDIR = $(ROOTDIR)/bin
#
# where YAP should look for binary libraries
#
2010-03-05 08:15:02 +00:00
LIBDIR=@libdir@/Yap
#
# where YAP should look for architecture-independent Prolog libraries
#
SHAREDIR=$(ROOTDIR)/share
#
#
# You shouldn't need to change what follows.
#
INSTALL=@INSTALL@
INSTALL_DATA=@INSTALL_DATA@
INSTALL_PROGRAM=@INSTALL_PROGRAM@
srcdir=@srcdir@
YAP_EXTRAS=@YAP_EXTRAS@
2010-06-23 11:49:34 +01:00
PROGRAMS= $(srcdir)/base64.pl \
$(srcdir)/broadcast.pl \
2010-07-29 00:22:08 +01:00
$(srcdir)/date.pl \
2010-06-23 11:49:34 +01:00
$(srcdir)/debug.pl \
2011-06-13 01:42:45 +01:00
$(srcdir)/main.pl \
$(srcdir)/maplist.pl \
2012-06-08 12:52:48 +01:00
$(srcdir)/menu.pl \
2010-07-28 20:03:08 +01:00
$(srcdir)/nb_set.pl \
$(srcdir)/operators.pl \
$(srcdir)/option.pl \
2012-02-13 09:38:02 +00:00
$(srcdir)/pairs.pl \
$(srcdir)/predicate_options.pl \
$(srcdir)/predopts.pl \
$(srcdir)/prolog_clause.pl \
$(srcdir)/prolog_colour.pl \
$(srcdir)/prolog_source.pl \
2010-06-17 00:33:20 +01:00
$(srcdir)/prolog_xref.pl \
2010-06-23 11:49:34 +01:00
$(srcdir)/quintus.pl \
$(srcdir)/readutil.pl \
$(srcdir)/record.pl \
2010-06-23 11:49:34 +01:00
$(srcdir)/settings.pl \
$(srcdir)/shlib.pl \
2011-03-11 21:31:10 +00:00
$(srcdir)/thread_pool.pl \
2010-06-23 11:49:34 +01:00
$(srcdir)/url.pl \
2011-06-13 01:57:15 +01:00
$(srcdir)/utf8.pl \
2012-06-08 12:52:48 +01:00
$(srcdir)/win_menu.pl \
2011-06-13 01:57:15 +01:00
$(srcdir)/www_browser.pl
install: $(PROGRAMS)
mkdir -p $(DESTDIR)$(SHAREDIR)/Yap
for p in $(PROGRAMS); do $(INSTALL_DATA) $$p $(DESTDIR)$(SHAREDIR)/Yap; done