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/packages/swi-minisat2/Makefile.in

52 lines
1.0 KiB
Makefile
Raw Normal View History

2009-11-11 10:56:37 +00:00
#
# default base directory for YAP installation
#
2010-03-05 10:22:48 +00:00
#
2009-11-11 10:56:37 +00:00
ROOTDIR = @prefix@
#
# where the binary should be
#
BINDIR = $(ROOTDIR)/bin
#
# where YAP should look for binary libraries
#
LIBDIR=@libdir@
YAPLIBDIR=@libdir@/Yap
2009-11-11 10:56:37 +00:00
#
# 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@
PROGRAMS= \
$(srcdir)/cnf.pl \
$(srcdir)/minisat.pl
EXAMPLE_PROGRAMS= \
$(srcdir)/examples/adder.pl \
$(srcdir)/examples/pearl_examples.pl
2014-02-10 23:30:21 +00:00
all:
2014-02-13 01:58:48 +00:00
install: $(PROGRAMS) install-examples
2009-11-11 10:56:37 +00:00
mkdir -p $(DESTDIR)$(SHAREDIR)/Yap
2012-07-07 15:43:07 +01:00
mkdir -p $(DESTDIR)$(SHAREDIR)/doc/Yap/packages/examples/minisat
2009-11-11 10:56:37 +00:00
for p in $(PROGRAMS); do $(INSTALL_DATA) $$p $(DESTDIR)$(SHAREDIR)/Yap; done
2012-07-07 15:43:07 +01:00
for p in $(EXAMPLE_PROGRAMS); do $(INSTALL_DATA) $$p $(DESTDIR)$(SHAREDIR)/doc/Yap/packages/examples/minisat; done
2009-11-11 10:56:37 +00:00
2014-02-10 23:30:21 +00:00
install-examples:
2009-11-11 10:56:37 +00:00
clean:
2014-02-10 23:30:21 +00:00
2014-02-13 01:58:48 +00:00
distclean:
2014-02-10 23:30:21 +00:00
rm Makefile