Revision
215
Author
jeremyhu@freedesktop.org
Date
2009-02-20 15:43:09 -0800 (Fri, 20 Feb 2009)

Log Message

Fix parallel build of tests

Modified Paths

Diff

Modified: AppleSGLX/trunk/tests/create_destroy_context/create_destroy_context.mk (214 => 215)


--- AppleSGLX/trunk/tests/create_destroy_context/create_destroy_context.mk	2009-02-20 22:49:49 UTC (rev 214)
+++ AppleSGLX/trunk/tests/create_destroy_context/create_destroy_context.mk	2009-02-20 23:43:09 UTC (rev 215)
@@ -1,16 +1,16 @@
-$(TEST_BUILD_DIR)/create_destroy_context: tests/create_destroy_context/create_destroy_context.c
+$(TEST_BUILD_DIR)/create_destroy_context: tests/create_destroy_context/create_destroy_context.c $(LIBGL)
 	$(CC) tests/create_destroy_context/create_destroy_context.c -Iinclude \
     -o $(TEST_BUILD_DIR)/create_destroy_context $(LINK_TEST)
 
-$(TEST_BUILD_DIR)/create_destroy_context_alone: tests/create_destroy_context/create_destroy_context_alone.c
+$(TEST_BUILD_DIR)/create_destroy_context_alone: tests/create_destroy_context/create_destroy_context_alone.c $(LIBGL)
 	$(CC) tests/create_destroy_context/create_destroy_context_alone.c -Iinclude \
     -o $(TEST_BUILD_DIR)/create_destroy_context_alone $(LINK_TEST)
 
-$(TEST_BUILD_DIR)/create_destroy_context_with_drawable: tests/create_destroy_context/create_destroy_context_with_drawable.c
+$(TEST_BUILD_DIR)/create_destroy_context_with_drawable: tests/create_destroy_context/create_destroy_context_with_drawable.c $(LIBGL)
 	$(CC) tests/create_destroy_context/create_destroy_context_with_drawable.c -Iinclude \
     -o $(TEST_BUILD_DIR)/create_destroy_context_with_drawable $(LINK_TEST)
 
-$(TEST_BUILD_DIR)/create_destroy_context_with_drawable_2: tests/create_destroy_context/create_destroy_context_with_drawable_2.c
+$(TEST_BUILD_DIR)/create_destroy_context_with_drawable_2: tests/create_destroy_context/create_destroy_context_with_drawable_2.c $(LIBGL)
 	$(CC) tests/create_destroy_context/create_destroy_context_with_drawable_2.c -Iinclude \
     -o $(TEST_BUILD_DIR)/create_destroy_context_with_drawable_2 $(LINK_TEST)
 

Modified: AppleSGLX/trunk/tests/tests.mk (214 => 215)


--- AppleSGLX/trunk/tests/tests.mk	2009-02-20 22:49:49 UTC (rev 214)
+++ AppleSGLX/trunk/tests/tests.mk	2009-02-20 23:43:09 UTC (rev 215)
@@ -17,7 +17,7 @@
 include tests/triangle_glx_single/triangle_glx.mk
 include tests/shared/shared.mk
 
-tests: $(TEST_BUILD_DIR)/libGL.dylib $(TEST_BUILD_DIR) $(TEST_BUILD_DIR)/simple $(TEST_BUILD_DIR)/fbconfigs $(TEST_BUILD_DIR)/triangle_glx \
+tests: $(TEST_BUILD_DIR)/simple $(TEST_BUILD_DIR)/fbconfigs $(TEST_BUILD_DIR)/triangle_glx \
   $(TEST_BUILD_DIR)/create_destroy_context $(TEST_BUILD_DIR)/glxgears $(TEST_BUILD_DIR)/glxinfo \
   $(TEST_BUILD_DIR)/pbuffer $(TEST_BUILD_DIR)/pbuffer_destroy \
   $(TEST_BUILD_DIR)/glxpixmap \