mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-25 05:51:55 -08:00
by spaces. A custom script was used to insert/replace Emacs and ViM per-file editor settings according to their type and the new ECL coding style.
12 lines
485 B
Common Lisp
12 lines
485 B
Common Lisp
;;;; -*- Mode: Lisp; Syntax: Common-Lisp; indent-tabs-mode: nil; Package: CLOS -*-
|
|
;;;; vim: set filetype=lisp tabstop=8 shiftwidth=2 expandtab:
|
|
|
|
;;;;
|
|
(defvar std-compile (symbol-function 'compile-file))
|
|
(defun compile-file (file &key (output-file (make-pathname :type "o" :defaults file)))
|
|
(funcall std-compile
|
|
file
|
|
:c-file t :h-file t :data-file t :system-p t
|
|
:output-file nil))
|
|
|
|
;(setq compiler:*cc* (concatenate 'STRING compiler:*cc* " -I../h"))
|