Began removing $Id$ tags. This will be an ongoing process.
[citadel.git] / libcitadel / tests / Makefile.in
index 95808e7d08e55229f00e7d0d93e1f2a63de5b1c3..8ffea74e43dc64d054e53a1f1be4bc22f5475941 100644 (file)
@@ -1,5 +1,3 @@
-# $Id: Makefile.in 7752 2009-08-29 10:37:43Z dothebart $
-
 AUTOCONF=@AUTOCONF@
 CC=@CC@
 CFLAGS=@CFLAGS@
@@ -16,14 +14,14 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test
+TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test hashlist_test
 all: $(TARGETS)
 
 
 .SUFFIXES: .cpp .c .o
 
 clean:
-       rm -f *.o 
+       rm -f *.o *.gcda *.gcov *.gcno $(TARGETS)
 
 distclean: clean
        rm -f Makefile config.cache config.log config.status \
@@ -40,7 +38,7 @@ stringbuf_IO_test:    $(LIBOBJS) stringbuf_IO_test.o
        $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
        stringbuf_IO_test.o \
        ../.libs/libcitadel.a \
-       -o stringbuf_io_test
+       -o stringbuf_IO_test
 
 stringbuf_conversion_test:     $(LIBOBJS) stringbuf_conversion.o 
        $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
@@ -48,6 +46,12 @@ stringbuf_conversion_test:   $(LIBOBJS) stringbuf_conversion.o
        ../.libs/libcitadel.a \
        -o stringbuf_conversion_test 
 
+hashlist_test: $(LIBOBJS) hashlist_test.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       hashlist_test.o \
+       ../.libs/libcitadel.a \
+       -o hashlist_test 
+
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<