rnd-20010102-1-src
authorHolger Schemel <info@artsoft.org>
Tue, 2 Jan 2001 01:55:08 +0000 (02:55 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 30 Aug 2014 08:35:45 +0000 (10:35 +0200)
CHANGES
Makefile
src/Makefile

diff --git a/CHANGES b/CHANGES
index 304c14eac1bd14023aa4a40234da1836070d1581..600a5460e74c80576c74605ced67479317bae028 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -8,6 +8,7 @@ Release Version 2.0.0 [01 JAN 2001]
        - fixed network playing bug (patch from web site)
        - SDL version can load and play music modules
        - fixed element description in level editor for EM doors and keys
+       - sound sample frequency raised from 8 kHz to 22 kHz
 
 Release Version 1.4.0 [27 OCT 1999]
 -----------------------------------
index 78eb6ea087c6d33cf0982fafc7403009c8aeb7bf..a4db1d9dc90ee599842e812c5a4241e3caba8171 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -94,6 +94,9 @@ dist-msdos:
 dist-win32:
        ./Scripts/make_dist.sh win .
 
+dist-clean:
+       @$(MAKE_CMD) dist-clean
+
 dist: dist-unix dist-msdos dist-win32
 
 depend dep:
index eee3bac4f2203a9c2bd7bbff2d5691440608fdee..511fb3159bab19e2600282a5320bebfc42c0cce5 100644 (file)
@@ -147,18 +147,24 @@ $(LIBGAME):
 .c.o:
        $(CC) $(PROFILING) $(CFLAGS) -c $*.c
 
-clean:
+clean-obj:
        $(MAKE) -C $(LIBDIR) clean
        $(RM) $(OBJS)
        $(RM) $(LIBGAME)
+
+clean-bin:
        $(RM) $(PROGNAME)
        $(RM) ../*.exe
 
+clean: clean-obj clean-bin
+
 
 #-----------------------------------------------------------------------------#
 # development only stuff                                                      #
 #-----------------------------------------------------------------------------#
 
+dist-clean: clean-obj
+
 depend:
        $(MAKE) -C $(LIBDIR) depend
        for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend