]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
Add test for loading one mimepart from the mimestructure; decode its content inside.
[citadel.git] / libcitadel / tests / Makefile.in
index db30bcad58d12c047dad3c53a853188357b69257..78570bf652f1a97cd789d496b2d4fce072b72b6b 100644 (file)
@@ -1,5 +1,3 @@
-# $Id: Makefile.in 7752 2009-08-29 10:37:43Z dothebart $
-
 AUTOCONF=@AUTOCONF@
 CC=@CC@
 CFLAGS=@CFLAGS@
@@ -16,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 mime_xdg_lookup_test
 all: $(TARGETS)
 
 
@@ -54,6 +52,21 @@ 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 
+
+
+mime_xdg_lookup_test:  $(LIBOBJS) mime_xdg_lookup_type.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       mime_xdg_lookup_type.o \
+       ../.libs/libcitadel.a \
+       -o mime_xdg_lookup_test 
+
+
+
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<