close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

source: branches/f4grobner/compile-me.lisp@ 547

Last change on this file since 547 was 547, checked in by Marek Rychlik, 9 years ago

* empty log message *

File size: 628 bytes
Line 
1(defvar *files*
2 '("utils" "monomial" "ring"
3 "order" "term" "termlist" "polynomial" "priority-queue"
4 "pair-queue" "grobner-debug" "division" "criterion" "buchberger" "gebauer-moeller"
5 "gb-postprocessing" "grobner-wrap" "ideal" "ngrobner-package" "ngrobner")
6 "All Lisp files needed. The order of files is important!")
7
8(defun compile-ngrobner ()
9 "Compile/load NGROBNER package files without ASDF."
10 (dolist (file *files*)
11 (compile-file file :verbose t :print t)))
12
13(defun load-ngrobner ()
14 "Load NGROBNER package files without ASDF."
15 (dolist (file *files*)
16 (compile-file file :verbose t :print t)))
Note: See TracBrowser for help on using the repository browser.