]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
* add test data from head, so we can compare results
[citadel.git] / libcitadel / tests / Makefile.in
index db30bcad58d12c047dad3c53a853188357b69257..4335cf635ca39edb7b0c3fb686f64c2fe1cf9e6c 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,18 @@ 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  $<