]> git.jsancho.org Git - gacela.git/blob - gacela_make.lisp
(no commit message)
[gacela.git] / gacela_make.lisp
1 ;;; Gacela, a GNU Common Lisp extension for fast games development
2 ;;; Copyright (C) 2009 by Javier Sancho Fernandez <jsf at jsancho dot org>
3 ;;;
4 ;;; This program is free software: you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation, either version 3 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ;;; GNU General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License
15 ;;; along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17
18 (defmacro compile-gfile (file-name)
19   `(compile-file ,file-name :system-p t))
20
21 (defun compile-gacela ()
22   (compile-gfile "gacela.lisp")
23   (compile-gfile "gacela_SDL.lisp")
24   (compile-gfile "gacela_GL.lisp")
25   (compile-gfile "gacela_draw.lisp")
26   (compile-gfile "gacela_events.lisp")
27   (compile-gfile "gacela_mobs.lisp")
28   (compile-gfile "gacela_widgets.lisp")
29   (compile-gfile "gacela_misc.lisp"))
30
31 (defun link-gacela ()
32   (compiler::link
33    '("gacela.o" "gacela_SDL.o" "gacela_GL.o" "gacela_draw.o" "gacela_events.o" "gacela_mobs.o" "gacela_widgets.o" "gacela_misc.o")
34    "gacela"
35    ""
36    "-lSDL -lSDL_image -lSDL_ttf -lSDL_mixer -lSGE -lGL -lGLU"))
37
38 (defun build-gacela ()
39   (compile-gacela)
40   (link-gacela))