X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=gacela_make.lisp;fp=gacela_make.lisp;h=a6950ef8ac1c6620143297e5f30f5c9433c0f134;hb=4fe9bd9e78b0e3cee1133da2abcb05bc98322b31;hp=99eacf513b3275f88b3901374dfc4e9fd2dedb2b;hpb=8caa865a3194eb573382a411df7636ebb472ca1f;p=gacela.git diff --git a/gacela_make.lisp b/gacela_make.lisp index 99eacf5..a6950ef 100755 --- a/gacela_make.lisp +++ b/gacela_make.lisp @@ -14,12 +14,10 @@ ;;; You should have received a copy of the GNU General Public License ;;; along with this program. If not, see . -(setq compiler::*cc* (concatenate 'string - compiler::*cc* - "-I/usr/include/FTGL -I/usr/include/freetype2")) - -(defmacro compile-gfile (file-name) - `(compile-file ,file-name :system-p t)) +(defmacro compile-gfile (file-name &key include) + `(progn + (setq compiler::*cc* (concatenate 'string compiler::*cc* ,include " ")) + (compile-file ,file-name :system-p t))) (defun compile-gacela () (compile-gfile "gacela.lisp")