X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_sp%2FMakefile;h=1d327c50684e1f7a642c46ec2d82687e692a3aac;hb=016e6a754b47cf2d4f67ee754d66213d9e5115ee;hp=ae7c37fa2c5608cf6db10a94c4d34d1099fb5519;hpb=72bb1f5d2849131d094f38b9a0ce2d17ecacefe1;p=rocksndiamonds.git diff --git a/src/game_sp/Makefile b/src/game_sp/Makefile index ae7c37fa..1d327c50 100644 --- a/src/game_sp/Makefile +++ b/src/game_sp/Makefile @@ -4,7 +4,7 @@ # (c) 1995-2014 by Artsoft Entertainment # Holger Schemel # info@artsoft.org -# http://www.artsoft.org/ +# https://www.artsoft.org/ # ----------------------------------------------------------------------------- # The native Supaplex game engine is based on: # - MegaPlex version 0.5 beta release xmas 2001 by Frank Schindler @@ -78,7 +78,7 @@ GAME_SP = game_sp.a all: $(GAME_SP) $(GAME_SP): $(OBJS) - $(AR) cru $(GAME_SP) $(OBJS) + $(AR) cr $(GAME_SP) $(OBJS) $(RANLIB) $(GAME_SP) .c.o: @@ -96,6 +96,9 @@ clean: depend: for i in $(SRCS); do $(CPP) $(CFLAGS) -M $$i; done > .depend +depend-clean: + $(RM) .depend + ifeq (.depend,$(wildcard .depend)) include .depend endif