rnd-20031019-4-src
[rocksndiamonds.git] / src / libgame / Makefile
index 07159642b635962d1368fe008de1400c52f9501d..4d5b28c6b3eae4baadc7ddfe80b82ab7b7e874da 100644 (file)
@@ -1,16 +1,23 @@
-#=============================================================================#
-# Makefile for Artsoft Retro-Game Library                                     #
-# (c) 1994-2000 Holger Schemel, info@artsoft.org                              #
-#=============================================================================#
+# =============================================================================
+# Rocks'n'Diamonds Makefile (libgame)
+# -----------------------------------------------------------------------------
+# (c) 1995-2003 Holger Schemel <info@artsoft.org>
+# =============================================================================
+
+# -----------------------------------------------------------------------------
+# configuration
+# -----------------------------------------------------------------------------
 
 SRCS = system.c        \
        gadgets.c       \
        text.c          \
        sound.c         \
        joystick.c      \
+       toons.c         \
        pcx.c           \
        image.c         \
        random.c        \
+       hash.c          \
        setup.c         \
        misc.c          \
        msdos.c         \
@@ -22,9 +29,11 @@ OBJS =       system.o        \
        text.o          \
        sound.o         \
        joystick.o      \
+       toons.o         \
        pcx.o           \
        image.o         \
        random.o        \
+       hash.o          \
        setup.o         \
        misc.o          \
        msdos.o         \
@@ -34,6 +43,10 @@ OBJS =       system.o        \
 LIBGAME = libgame.a
 
 
+# -----------------------------------------------------------------------------
+# build targets
+# -----------------------------------------------------------------------------
+
 all: $(LIBGAME)
 
 $(LIBGAME): $(OBJS)
@@ -48,9 +61,9 @@ clean:
        $(RM) $(LIBGAME)
 
 
-#-----------------------------------------------------------------------------#
-# development only stuff                                                      #
-#-----------------------------------------------------------------------------#
+# -----------------------------------------------------------------------------
+# development only
+# -----------------------------------------------------------------------------
 
 depend:
        for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend