X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Flibgame%2FMakefile;h=54e92ed803b44b201d80c1ef6e4ed807bc97cc2f;hb=6ae51f91105d85db369b57659f8d3b5e133831e0;hp=8b2b602465464c96aedbfc0db9b7852a2dc065be;hpb=fb81506227581bcc04cd4835b8e3f41a109d1f97;p=rocksndiamonds.git diff --git a/src/libgame/Makefile b/src/libgame/Makefile index 8b2b6024..54e92ed8 100644 --- a/src/libgame/Makefile +++ b/src/libgame/Makefile @@ -4,7 +4,7 @@ # (c) 1995-2014 by Artsoft Entertainment # Holger Schemel # info@artsoft.org -# http://www.artsoft.org/ +# https://www.artsoft.org/ # ----------------------------------------------------------------------------- # src/libgame/Makefile # ============================================================================= @@ -22,6 +22,9 @@ SRCS = system.c \ image.c \ random.c \ hash.c \ + list.c \ + http.c \ + base64.c \ setup.c \ misc.c \ sdl.c \ @@ -39,6 +42,9 @@ OBJS = system.o \ image.o \ random.o \ hash.o \ + list.o \ + http.o \ + base64.o \ setup.o \ misc.o \ sdl.o \ @@ -57,7 +63,7 @@ LIBGAME = libgame.a all: $(LIBGAME) $(LIBGAME): $(OBJS) - $(AR) cru $(LIBGAME) $(OBJS) + $(AR) cr $(LIBGAME) $(OBJS) $(RANLIB) $(LIBGAME) .c.o: @@ -75,6 +81,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