From: Holger Schemel Date: Tue, 2 Jan 2001 01:55:08 +0000 (+0100) Subject: rnd-20010102-1-src X-Git-Tag: 2.0.1^2~31 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=e208db9f11f66f2315ecd1254c0a08a1e525f59d rnd-20010102-1-src --- diff --git a/CHANGES b/CHANGES index 304c14ea..600a5460 100644 --- 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] ----------------------------------- diff --git a/Makefile b/Makefile index 78eb6ea0..a4db1d9d 100644 --- 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: diff --git a/src/Makefile b/src/Makefile index eee3bac4..511fb315 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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