]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
Add test running our wildfire sample code
[citadel.git] / libcitadel / tests / Makefile.in
index 78570bf652f1a97cd789d496b2d4fce072b72b6b..32c7f1f48508115962e344978a8927e168d99e30 100644 (file)
@@ -14,7 +14,7 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test hashlist_test mimeparser_test mime_xdg_lookup_test
+TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test hashlist_test mimeparser_test mime_xdg_lookup_test wildfire_test
 all: $(TARGETS)
 
 
@@ -66,6 +66,12 @@ mime_xdg_lookup_test:        $(LIBOBJS) mime_xdg_lookup_type.o
        -o mime_xdg_lookup_test 
 
 
+wildfire_test: $(LIBOBJS) wildfire_test.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       wildfire_test.o \
+       ../.libs/libcitadel.a \
+       -o wildfire_test 
+
 
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<