]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
Add mime-parser-testing tool
[citadel.git] / libcitadel / tests / Makefile.in
index 5b01bda73621b36c54b6cc662ce651e9f0507ab6..1c602c090a356f892f88ec42b7670b35a39d872e 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 hashlist_test
+TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test hashlist_test mimeparser_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) \
@@ -54,6 +52,12 @@ hashlist_test:       $(LIBOBJS) hashlist_test.o
        ../.libs/libcitadel.a \
        -o hashlist_test 
 
+mimeparser_test:       $(LIBOBJS) mimeparser_test.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       mimeparser_test.o \
+       ../.libs/libcitadel.a \
+       -o mimeparser_test 
+
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<