added function to allocate and copy memory
[rocksndiamonds.git] / src / libgame / Makefile
index 26f311604648a63ae34af61b9d83d70835c8816e..2718b459b7e31b7b007b8c4c69caa19690815df2 100644 (file)
@@ -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           \
@@ -75,6 +79,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