ecl/src/clx/cmpinit.lsp
2001-06-26 17:14:44 +00:00

7 lines
214 B
Common Lisp

(defvar std-compile (symbol-function 'compile-file))
(defun compile-file (file &rest args &key (output-file 'T))
(funcall std-compile
file
:c-file t :h-file t :data-file t
:output-file output-file))