]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
Added the regression test I wrote while fixing stripallbut() yesterday
[citadel.git] / libcitadel / tests / Makefile.in
index 32c7f1f48508115962e344978a8927e168d99e30..53732c7e00a50c96aafedc43baaae6ea15d4a745 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 wildfire_test
+TARGETS=stringbuf_test stringbuf_IO_test stringbuf_conversion_test hashlist_test mimeparser_test mime_xdg_lookup_test wildfire_test stripallbut_test
 all: $(TARGETS)
 
 
@@ -73,6 +73,13 @@ wildfire_test:       $(LIBOBJS) wildfire_test.o
        -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  $<