[Commit] xcb/programs/xcbtests Imakefile,1.1,1.2

Jamey Sharp commit@keithp.com
Fri, 25 Apr 2003 13:46:37 -0700


Committed by: jamey

Update of /local/src/CVS/xcb/programs/xcbtests
In directory home.keithp.com:/tmp/cvs-serv18126/programs/xcbtests

Modified Files:
	Imakefile 
Log Message:
Added shm implementation; some build system changes.

Index: Imakefile
===================================================================
RCS file: /local/src/CVS/xcb/programs/xcbtests/Imakefile,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Imakefile	26 Mar 2003 07:54:37 -0000	1.1
+++ Imakefile	25 Apr 2003 20:46:35 -0000	1.2
@@ -7,10 +7,7 @@
 INCLUDES = -I. -I../../exports/include
 XCB=../../lib/XCB
 XCBLIB=-L$(XCB) -lXCB
-DEPXCBLIB=$(XCB)/libXCB.a
-
-        DEPLIBS = $(DEPXCBLIB)
-        XCBLIBS = $(XCBLIB) -L$(XLIB) -lXau
+DEPXCBLIB=$(XCB)/libXCB.so
 
 all:: main dpms xdpyinfo rendertest
 
@@ -24,12 +21,12 @@
 
 rendertest_OBJS = rendertest.o
 
-NormalProgramTarget(main,$(main_OBJS),$(DEPXCBLIB),$(XCBLIBS),$(THREADS))
+NormalProgramTarget(main,$(main_OBJS),$(DEPXCBLIB),$(XCBLIB),$(THREADS))
 
-NormalProgramTarget(dpms,$(dpms_OBJS),$(DEPXCBLIB),$(XCBLIBS),)
+NormalProgramTarget(dpms,$(dpms_OBJS),$(DEPXCBLIB),$(XCBLIB),)
 
-NormalProgramTarget(xdpyinfo,$(xdpyinfo_OBJS),$(DEPXCBLIB),$(XCBLIBS),)
+NormalProgramTarget(xdpyinfo,$(xdpyinfo_OBJS),$(DEPXCBLIB),$(XCBLIB),)
 
-NormalProgramTarget(rendertest,$(rendertest_OBJS),$(DEPXCBLIB),$(XCBLIBS),)
+NormalProgramTarget(rendertest,$(rendertest_OBJS),$(DEPXCBLIB),$(XCBLIB),)
 
 DependTarget()