[xserver-commit] xserver/hw/kdrive/sis300 Makefile.am,1.1,1.2

Eric Anholt xserver-commit@pdx.freedesktop.org
Mon, 29 Dec 2003 01:04:22 -0800


Committed by: anholt

Update of /cvs/xserver/xserver/hw/kdrive/sis300
In directory pdx:/home/anholt/xserver/hw/kdrive/sis300

Modified Files:
	Makefile.am 
Log Message:
Add dependency lines so that servers are rebuilt when server
libraries are changed.


Index: Makefile.am
===================================================================
RCS file: /cvs/xserver/xserver/hw/kdrive/sis300/Makefile.am,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.am	8 Dec 2003 01:55:10 -0000	1.1
+++ Makefile.am	29 Dec 2003 09:04:20 -0000	1.2
@@ -32,11 +32,15 @@
 Xsis_SOURCES = \
 	sis_stub.c
 
+SIS_LIBS =				\
+	libsis.a 			\
+	$(FBDEV_LIBS)			\
+	$(VESA_LIBS)			\
+	@KDRIVE_LIBS@
+
 Xsis_LDADD = \
-	libsis.a 				\
-	$(FBDEV_LIBS)				\
-	$(VESA_LIBS)				\
-	@KDRIVE_LIBS@				\
+	$(SIS_LIBS)				\
 	@XSERVER_LIBS@                          \
 	$(TSLIB_FLAG)
 
+Xsis_DEPENDENCIES = $(SIS_LIBS) @KDRIVE_LIBS@