added list handling functions (from glib)
[rocksndiamonds.git] / src / libgame / Makefile
index 0e2d57d6b0cebd053bcf48d1a13c02d7e5bc4b1c..54e92ed803b44b201d80c1ef6e4ed807bc97cc2f 100644 (file)
@@ -22,6 +22,8 @@ SRCS =        system.c        \
        image.c         \
        random.c        \
        hash.c          \
+       list.c          \
+       http.c          \
        base64.c        \
        setup.c         \
        misc.c          \
@@ -40,6 +42,8 @@ OBJS =        system.o        \
        image.o         \
        random.o        \
        hash.o          \
+       list.o          \
+       http.o          \
        base64.o        \
        setup.o         \
        misc.o          \
@@ -77,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