rnd-20040122-1-src
[rocksndiamonds.git] / src / Makefile
index 3ca01a688fd62799edd80e95058442624e042d60..976f86bc60b6322e923e014760a404ff605caf0c 100644 (file)
@@ -1,11 +1,16 @@
-#=============================================================================#
-# Makefile for Rocks'n'Diamonds                                               #
-# (c) 1995-2002 Holger Schemel, info@artsoft.org                              #
-#=============================================================================#
+# =============================================================================
+# Rocks'n'Diamonds Makefile (src)
+# -----------------------------------------------------------------------------
+# (c) 1995-2003 Holger Schemel <info@artsoft.org>
+# =============================================================================
+
+# -----------------------------------------------------------------------------
+# configuration
+# -----------------------------------------------------------------------------
 
 .EXPORT_ALL_VARIABLES:
 
-ifndef PLATFORM                        # platform not specified -- try auto detection
+ifndef PLATFORM                        # no platform specified -- try auto detection
 ifdef COMSPEC
 PLATFORM = msdos
 else
@@ -107,7 +112,7 @@ CONFIG_GAME_DIR = $(CONFIG_RO_GAME_DIR) $(CONFIG_RW_GAME_DIR)
 
 
 CONFIG = $(CONFIG_GAME_DIR) $(CONFIG_SCORE_ENTRIES) $(JOYSTICK)
-DEBUG = -DDEBUG -g
+DEBUG = -DDEBUG -g
 # PROFILING = $(PROFILING_FLAGS)
 
 # OPTIONS = $(DEBUG) -Wall                     # only for debugging purposes
@@ -130,6 +135,8 @@ LDFLAGS = $(SYS_LDFLAGS) $(EXTRA_LDFLAGS) -lm
 SRCS = main.c          \
        conf_gfx.c      \
        conf_snd.c      \
+       conf_mus.c      \
+       conf_hlp.c      \
        init.c          \
        config.c        \
        events.c        \
@@ -146,6 +153,8 @@ SRCS =      main.c          \
 OBJS = main.o          \
        conf_gfx.o      \
        conf_snd.o      \
+       conf_mus.o      \
+       conf_hlp.o      \
        init.o          \
        config.o        \
        events.o        \
@@ -161,14 +170,19 @@ OBJS =    main.o          \
 
 CNFS = conf_gfx.h      \
        conf_snd.h      \
+       conf_mus.h      \
        conf_chr.c      \
        conf_chr.h      \
        conf_cus.c      \
        conf_cus.h      \
+       conf_grp.c      \
+       conf_grp.h      \
        conf_e2g.c      \
        conf_esg.c      \
        conf_e2s.c      \
-       conf_fnt.c
+       conf_fnt.c      \
+       conf_g2s.c      \
+       conf_g2m.c
 
 CNFS_CMD = ../Scripts/create_element_defs.pl
 
@@ -184,6 +198,10 @@ ICON = $(ICONBASE).o
 endif
 
 
+# -----------------------------------------------------------------------------
+# build targets
+# -----------------------------------------------------------------------------
+
 all: libgame_dir $(PROGNAME)
 
 $(PROGNAME): $(LIBGAME) $(TIMESTAMP_FILE) $(OBJS) $(ICON)
@@ -206,6 +224,9 @@ conf_gfx.h: conf_gfx.c
 conf_snd.h: conf_snd.c
        @$(MAKE) auto-conf
 
+conf_mus.h: conf_mus.c
+       @$(MAKE) auto-conf
+
 $(TIMESTAMP_FILE): $(SRCS) $(LIBGAME)
        @date '+"[%Y-%m-%d %H:%M]"' \
        | sed -e 's/^/#define COMPILE_DATE_STRING /' \
@@ -234,9 +255,9 @@ clean-bin:
 clean: clean-obj clean-ico clean-bin
 
 
-#-----------------------------------------------------------------------------#
-# development only stuff                                                      #
-#-----------------------------------------------------------------------------#
+# -----------------------------------------------------------------------------
+# development only
+# -----------------------------------------------------------------------------
 
 dist-clean: clean-obj