move arch-independent file to share

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@200 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
stasinos
2001-11-26 16:05:19 +00:00
parent 42de8a6f82
commit e0ff7e9fb2
8 changed files with 87 additions and 70 deletions

View File

@@ -7,10 +7,14 @@ ROOTDIR = @prefix@
#
BINDIR = $(ROOTDIR)/bin
#
# where YAP should look for libraries
# where YAP should look for binary libraries
#
LIBDIR=$(ROOTDIR)/lib/Yap
#
# where YAP should look for architecture-independent Prolog libraries
#
SHAREDIR=$(ROOTDIR)/share
#
#
# You shouldn't need to change what follows.
#
@@ -43,6 +47,6 @@ LOGTALK_PROGRAMS= \
$(srcdir)/logtalk/yap430.config
install: $(PROGRAMS)
-mkdir -p $(DESTDIR)$(LIBDIR)/library/logtalk
for p in $(PROGRAMS); do $(INSTALL) $$p $(DESTDIR)$(LIBDIR)/library; done
for p in $(LOGTALK_PROGRAMS); do $(INSTALL) $$p $(DESTDIR)$(LIBDIR)/library/logtalk; done
mkdir -p $(DESTDIR)$(SHAREDIR)/Yap
for p in $(PROGRAMS); do $(INSTALL_DATA) $$p $(DESTDIR)$(SHAREDIR)/Yap; done
for p in $(LOGTALK_PROGRAMS); do $(INSTALL_DATA) $$p $(DESTDIR)$(SHAREDIR)/Yap/logtalk; done

View File

@@ -1,15 +1,17 @@
#
# default base directory for YAP installation
# (EROOT for architecture-dependent files)
#
ROOTDIR = @prefix@
EROOTDIR = @exec_prefix@
#
# where the binary should be
#
BINDIR = $(ROOTDIR)/bin
BINDIR = $(EROOTDIR)/bin
#
# where YAP should look for libraries
#
LIBDIR=$(ROOTDIR)/lib/Yap
LIBDIR=$(EROOTDIR)/lib/Yap
#
#
CC=@CC@

View File

@@ -1,15 +1,17 @@
#
# default base directory for YAP installation
# (EROOT for architecture-dependent files)
#
ROOTDIR = @prefix@
EROOTDIR = @exec_prefix@
#
# where the binary should be
#
BINDIR = $(ROOTDIR)/bin
BINDIR = $(EROOTDIR)/bin
#
# where YAP should look for libraries
#
LIBDIR=$(ROOTDIR)/lib/Yap
LIBDIR=$(EROOTDIR)/lib/Yap
#
#
CC=@CC@

View File

@@ -1,15 +1,17 @@
#
# default base directory for YAP installation
# (EROOT for architecture-dependent files)
#
ROOTDIR = @prefix@
EROOTDIR = @exec_prefix@
#
# where the binary should be
#
BINDIR = $(ROOTDIR)/bin
BINDIR = $(EROOTDIR)/bin
#
# where YAP should look for libraries
#
LIBDIR=$(ROOTDIR)/lib/Yap
LIBDIR=$(EROOTDIR)/lib/Yap
#
#
CC=@CC@