Began removing $Id$ tags. This will be an ongoing process.
[citadel.git] / libcitadel / tests / Makefile.in
index 32718a0f949a7ecd42e19dc0e9d03e4b39f35c58..8ffea74e43dc64d054e53a1f1be4bc22f5475941 100644 (file)
@@ -1,12 +1,10 @@
-# $Id: Makefile.in 7752 2009-08-29 10:37:43Z dothebart $
-
 AUTOCONF=@AUTOCONF@
 CC=@CC@
 CFLAGS=@CFLAGS@
 DEFS=@DEFS@
 INSTALL=@INSTALL@
-LIBOBJS=@LIBOBJS@ -lcunit
-LIBS=@LIBS@
+LIBOBJS=@LIBOBJS@
+LIBS=@LIBS@  -lcunit
 LDFLAGS=@LDFLAGS@ -dn
 SED=@SED@
 LCUNIT_DEFS=
@@ -16,14 +14,14 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_test stringbuf_IO_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 \
@@ -34,15 +32,25 @@ stringbuf_test:     $(LIBOBJS) stringbuf_test.o
        $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
        stringbuf_test.o \
        ../.libs/libcitadel.a \
-       -o stringbuf_test \
-       $(LIBS)
+       -o stringbuf_test
 
 stringbuf_IO_test:     $(LIBOBJS) stringbuf_IO_test.o 
        $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
        stringbuf_IO_test.o \
        ../.libs/libcitadel.a \
-       -o stringbuf_io_test \
-       $(LIBS)
+       -o stringbuf_IO_test
+
+stringbuf_conversion_test:     $(LIBOBJS) stringbuf_conversion.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       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  $<