Add mime-parser-testing tool
[citadel.git] / libcitadel / tests / Makefile.in
index 8ffea74e43dc64d054e53a1f1be4bc22f5475941..1c602c090a356f892f88ec42b7670b35a39d872e 100644 (file)
@@ -14,7 +14,7 @@ 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)
 
 
@@ -52,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  $<