]> code.citadel.org Git - citadel.git/blobdiff - libcitadel/tests/Makefile.in
* start out a unit test for our buffered I/O; copy bind/accept/select stuff from...
[citadel.git] / libcitadel / tests / Makefile.in
index e222bd0b358ea9151d044d45e0e6d57771fca794..7d24aaa9365c65b382ace78999af1b43ad2f4cb8 100644 (file)
@@ -16,7 +16,7 @@ top_builddir=`pwd`
 
 # End of configuration section
 
-TARGETS=stringbuf_test 
+TARGETS=stringbuf_test stringbuf_IO_test
 all: $(TARGETS)
 
 
@@ -36,6 +36,12 @@ stringbuf_test:      $(LIBOBJS) stringbuf_test.o
        -o stringbuf_test \
        $(LIBS)
 
+stringbuf_IO_test:     $(LIBOBJS) stringbuf_IO_test.o 
+       $(CC) $(LDFLAGS) $(LIBOBJS) $(LIBS) \
+       stringbuf_IO_test.o \
+       -o stringbuf_io_test \
+       $(LIBS)
+
 .c.o:
        $(CC) $(CFLAGS) $(DEFS) -c  $<