From d0d3993706b43b8688a9a642dc883720e26af008 Mon Sep 17 00:00:00 2001 From: jsancho Date: Wed, 14 Oct 2009 18:06:14 +0000 Subject: [PATCH] --- Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..d5bc941 --- /dev/null +++ b/Makefile @@ -0,0 +1,27 @@ +LISP = gcl + +SRC = gacela.lisp gacela_misc.lisp gacela_SDL.lisp gacela_GL.lisp \ + gacela_draw.lisp gacela_events.lisp gacela_mobs.lisp \ + gacela_widgets.lisp + +OBJ = gacela.o gacela_misc.o gacela_SDL.o gacela_GL.o gacela_draw.o \ + gacela_events.o gacela_mobs.o gacela_widgets.o + +.lisp.o: + $(LISP) -compile -system-p $< + +all: $(OBJ) + touch pepe + +clean: + rm $(OBJ) gacela + +gacela.o: gacela.lisp +gacela_misc.o: gacela_misc.lisp +gacela_SDL.o: gacela_SDL.lisp +gacela_GL.o: gacela_GL.lisp +gacela_draw.o: gacela_draw.lisp +gacela_events.o: gacela_events.lisp +gacela_mobs.o: gacela_mobs.lisp +gacela_widgets.o: gacela_widgets.lisp + -- 2.39.2