]> git.jsancho.org Git - gacela.git/blob - Makefile
(no commit message)
[gacela.git] / Makefile
1 LISP = gcl
2
3 SRC = gacela.lisp gacela_misc.lisp gacela_SDL.lisp gacela_GL.lisp \
4       gacela_draw.lisp gacela_events.lisp gacela_mobs.lisp \
5       gacela_widgets.lisp
6
7 OBJ = gacela.o gacela_misc.o gacela_SDL.o gacela_GL.o gacela_draw.o \
8       gacela_events.o gacela_mobs.o gacela_widgets.o
9
10 .lisp.o:
11         $(LISP) -compile -system-p $<
12
13 all: $(OBJ)
14         touch pepe
15
16 clean:
17         rm $(OBJ) gacela
18
19 gacela.o: gacela.lisp
20 gacela_misc.o: gacela_misc.lisp
21 gacela_SDL.o: gacela_SDL.lisp
22 gacela_GL.o: gacela_GL.lisp
23 gacela_draw.o: gacela_draw.lisp
24 gacela_events.o: gacela_events.lisp
25 gacela_mobs.o: gacela_mobs.lisp
26 gacela_widgets.o: gacela_widgets.lisp
27