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