Began removing $Id$ tags. This will be an ongoing process.
[citadel.git] / libcitadel / tests / Makefile.in
index e222bd0b358ea9151d044d45e0e6d57771fca794..8ffea74e43dc64d054e53a1f1be4bc22f5475941 100644 (file)
@@ -1,13 +1,11 @@
-# $Id: Makefile.in 7752 2009-08-29 10:37:43Z dothebart $
-
 AUTOCONF=@AUTOCONF@
 CC=@CC@
 CFLAGS=@CFLAGS@
 DEFS=@DEFS@
 INSTALL=@INSTALL@
-LIBOBJS=@LIBOBJS@ -lcunit -lcitadel
-LIBS=@LIBS@
-LDFLAGS=@LDFLAGS@ -L ../.libs
+LIBOBJS=@LIBOBJS@
+LIBS=@LIBS@  -lcunit
+LDFLAGS=@LDFLAGS@ -dn
 SED=@SED@
 LCUNIT_DEFS=
 srcdir=../
@@ -16,14 +14,14 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_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 \
@@ -33,8 +31,26 @@ distclean: clean
 stringbuf_test:        $(LIBOBJS) stringbuf_test.o 
        $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
        stringbuf_test.o \
-       -o stringbuf_test \
-       $(LIBS)
+       ../.libs/libcitadel.a \
+       -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
+
+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  $<