]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
* add simple RFC822 / iconv decoding test
[citadel.git] / libcitadel / tests / Makefile.in
index 32718a0f949a7ecd42e19dc0e9d03e4b39f35c58..38327be4810a1f12ec6defb66f5abd3c87f11eed 100644 (file)
@@ -16,7 +16,7 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_test stringbuf_IO_test
+TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test
 all: $(TARGETS)
 
 
@@ -44,6 +44,13 @@ stringbuf_IO_test:   $(LIBOBJS) stringbuf_IO_test.o
        -o stringbuf_io_test \
        $(LIBS)
 
+stringbuf_conversion_test:     $(LIBOBJS) stringbuf_conversion.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       stringbuf_conversion.o \
+       ../.libs/libcitadel.a \
+       -o stringbuf_conversion_test \
+       $(LIBS)
+
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<