.PHONY: clean all swipl check
-all: $(TARGET) $(BASENAME).info
+all: $(TARGET)
$(OBJECT): $(SOURCE) lib/libswipl.$(SOEXT)
$(CC) $(CFLAGS) -o $@ -c $(SOURCE)
ARG2 and ARG3 are strings designating the module and predicate name of the Prolog predicate to invoke, which must be of arity 2.\n\
ARG4 is any object that can be converted to a Prolog term, and will be passed as the first argument of the invoked predicate.\n\
The second argument of the predicate is left unbound and is assumed to treated by the invoked predicate as an output variable.\n\
-If ARG5 is non-nil, reverse the order of the predicate arguments such that the first argument is the output variable and the second argument is the input term derived from ARG4.
+If ARG5 is non-nil, reverse the order of the predicate arguments such that the first argument is the output variable and the second argument is the input term derived from ARG4.\n\
Further instantiations of the output variable can be examined via `sweep-next-solution'.",
NULL);
emacs_value args_open_query[] = {symbol_open_query, func_open_query};
;;; Code:
-(defun sweep-home-directory ()
- "Return the installation directory of `sweep'."
- (file-name-directory (locate-library "sweep.el" t)))
-
(defgroup sweep nil
"SWI-Prolog Embedded in Emacs."
:group 'prolog)
(defcustom sweep-init-args (list (expand-file-name
"sweep.pl"
- (sweep-home-directory)))
+ (file-name-directory load-file-name)))
"List of strings used as initialization arguments for Prolog."
:package-version '((sweep "0.1.0"))
:type '(list string)
"Compile sweep-module."
(interactive)
(let* ((sweep-directory
- (shell-quote-argument (sweep-home-directory)))
+ (shell-quote-argument (file-name-directory load-file-name)))
(make-commands
(concat
"cd " sweep-directory "; make; cd -"))
(defun sweep-init ()
(apply #'sweep-initialize
- (cons (expand-file-name "bin/swipl" (sweep-home-directory))
+ (cons (expand-file-name "bin/swipl" (file-name-directory
+ load-file-name))
(cons "-q" sweep-init-args))))
(defun sweep-predicates-collection ()