]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
Stream Z-encoding seems to work now.
[citadel.git] / libcitadel / tests / Makefile.in
index 1c602c090a356f892f88ec42b7670b35a39d872e..562339635acd13a38b3c453d2836c82feb9beaf9 100644 (file)
@@ -14,7 +14,16 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test hashlist_test mimeparser_test
+TARGETS=stringbuf_test \
+       stringbuf_IO_test \
+       stringbuf_conversion_test \
+       hashlist_test \
+       mimeparser_test \
+       mime_xdg_lookup_test \
+       wildfire_test \
+       stripallbut_test \
+       stringbuf_stream_test
+
 all: $(TARGETS)
 
 
@@ -40,6 +49,12 @@ stringbuf_IO_test:   $(LIBOBJS) stringbuf_IO_test.o
        ../.libs/libcitadel.a \
        -o stringbuf_IO_test
 
+stringbuf_stream_test: $(LIBOBJS) stringbuf_stream.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       stringbuf_stream.o \
+       ../.libs/libcitadel.a \
+       -o stringbuf_stream_test
+
 stringbuf_conversion_test:     $(LIBOBJS) stringbuf_conversion.o 
        $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
        stringbuf_conversion.o \
@@ -58,6 +73,28 @@ mimeparser_test:     $(LIBOBJS) 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 
+
+
+wildfire_test: $(LIBOBJS) wildfire_test.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       wildfire_test.o \
+       ../.libs/libcitadel.a \
+       -o wildfire_test 
+
+
+stripallbut_test:      $(LIBOBJS) stripallbut_test.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       stripallbut_test.o \
+       ../.libs/libcitadel.a \
+       -o stripallbut_test 
+
+
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<