Revision
93
Author
robert@fledge.watson.org
Date
2009-11-03 05:40:39 -0800 (Tue, 03 Nov 2009)

Log Message

Basic automake build bits for the testing subtree.

Modified Paths

Diff

Modified: trunk/testing/Makefile.am (92 => 93)


--- trunk/testing/Makefile.am	2009-11-03 13:33:05 UTC (rev 92)
+++ trunk/testing/Makefile.am	2009-11-03 13:40:39 UTC (rev 93)
@@ -0,0 +1,43 @@
+#
+#
+#
+
+noinst_LTLIBRARIES=libtest.la
+
+libtest_la_SOURCES=			\
+	dispatch_test.c
+
+TESTS=					\
+	dispatch_after			\
+	dispatch_api			\
+	dispatch_apply			\
+	dispatch_c99			\
+	dispatch_cascade		\
+	dispatch_cffd			\
+	dispatch_debug			\
+	dispatch_drift			\
+	dispatch_group			\
+	dispatch_pingpong		\
+	dispatch_priority		\
+	dispatch_proc			\
+	dispatch_read			\
+	dispatch_readsync		\
+	dispatch_sema			\
+	dispatch_starfish		\
+	dispatch_timer_bit31		\
+	dispatch_timer_bit63		\
+	dispatch_timer_set_time		\
+	queue_finalizer			\
+	nsoperation
+
+noinst_PROGRAMS=$(TESTS)
+
+TOOLS=					\
+	harness				\
+	summary
+
+noinst_PROGRAMS+=$(TOOLS)
+
+LDADD=libtest.la ../src/libdispatch.la
+CFLAGS=-Werror -Wall -DDISPATCH_NO_LEGACY $(MARCH_FLAGS) $(CBLOCKS_FLAGS)
+