added optional button to restart game (door, panel and touch variants)
[rocksndiamonds.git] / src / libgame / Makefile
index 8b2b602465464c96aedbfc0db9b7852a2dc065be..246655f5ddbf029dc45926d453db86cad3db39d6 100644 (file)
@@ -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,8 @@ SRCS =        system.c        \
        image.c         \
        random.c        \
        hash.c          \
+       http.c          \
+       base64.c        \
        setup.c         \
        misc.c          \
        sdl.c           \
@@ -39,6 +41,8 @@ OBJS =        system.o        \
        image.o         \
        random.o        \
        hash.o          \
+       http.o          \
+       base64.o        \
        setup.o         \
        misc.o          \
        sdl.o           \
@@ -57,7 +61,7 @@ LIBGAME = libgame.a
 all: $(LIBGAME)
 
 $(LIBGAME): $(OBJS)
-       $(AR) cru $(LIBGAME) $(OBJS)
+       $(AR) cr $(LIBGAME) $(OBJS)
        $(RANLIB) $(LIBGAME)
 
 .c.o: