set version number to 17.6.1

This commit is contained in:
polos 2017-06-30 16:59:40 +02:00
parent 80de7638fc
commit 1b3ef77336
2 changed files with 5 additions and 4 deletions

View file

@ -7,7 +7,7 @@
#include <QTimer>
#include <QStringList>
const char EQL::version[] = "17.5.1"; // May 2017
const char EQL::version[] = "17.6.1"; // June 2017
extern "C" void ini_EQL(cl_object);

View file

@ -13,9 +13,10 @@
"special-extensions"))
(dolist (f *lisp-files*)
(let ((file (format nil "lisp/~A" f)))
(when (probe-file file)
(delete-file (format nil "~A.~A" file #+msvc "obj" #-msvc "o")))
(let* ((file (format nil "lisp/~A" f))
(file.o (format nil "~A.~A" file #+msvc "obj" #-msvc "o")))
(when (probe-file file.o)
(delete-file file.o))
(compile-file file :system-p t)))
(c:build-static-library "ini_eql5"