added enabling/disabling virtual button overlay depending on input events
[rocksndiamonds.git] / src / libgame / Makefile
index c325fef5a5a28ea1768a25f4cb94302702d6d0d4..4693c226a9529311c092778ba9516382afecabf3 100644 (file)
@@ -1,39 +1,51 @@
-#=============================================================================#
-# Makefile for Rocks'n'Diamonds                                               #
-# (c) 1995-2000 Holger Schemel, info@artsoft.org                              #
-#=============================================================================#
-
-SRCS = libgame.c       \
-       private.c       \
-       system.c        \
+# =============================================================================
+# Rocks'n'Diamonds - McDuffin Strikes Back!
+# -----------------------------------------------------------------------------
+# (c) 1995-2014 by Artsoft Entertainment
+#                  Holger Schemel
+#                  info@artsoft.org
+#                  http://www.artsoft.org/
+# -----------------------------------------------------------------------------
+# src/libgame/Makefile
+# =============================================================================
+
+# -----------------------------------------------------------------------------
+# configuration
+# -----------------------------------------------------------------------------
+
+SRCS = system.c        \
        gadgets.c       \
        text.c          \
        sound.c         \
-       pcx.c           \
+       joystick.c      \
+       snapshot.c      \
        image.c         \
        random.c        \
+       hash.c          \
+       setup.c         \
        misc.c          \
-       msdos.c         \
-       x11.c           \
        sdl.c
 
-OBJS = libgame.o       \
-       private.o       \
-       system.o        \
+OBJS = system.o        \
        gadgets.o       \
        text.o          \
        sound.o         \
-       pcx.o           \
+       snapshot.o      \
+       joystick.o      \
        image.o         \
        random.o        \
+       hash.o          \
+       setup.o         \
        misc.o          \
-       msdos.o         \
-       x11.o           \
        sdl.o
 
 LIBGAME = libgame.a
 
 
+# -----------------------------------------------------------------------------
+# build targets
+# -----------------------------------------------------------------------------
+
 all: $(LIBGAME)
 
 $(LIBGAME): $(OBJS)
@@ -48,9 +60,9 @@ clean:
        $(RM) $(LIBGAME)
 
 
-#-----------------------------------------------------------------------------#
-# development only stuff                                                      #
-#-----------------------------------------------------------------------------#
+# -----------------------------------------------------------------------------
+# development only
+# -----------------------------------------------------------------------------
 
 depend:
        for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend