[xserver-commit] xserver/hw/kdrive/ati Makefile.am,1.3,1.4
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/ati
In directory pdx:/home/anholt/xserver/hw/kdrive/ati
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/ati/Makefile.am,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Makefile.am 29 Dec 2003 06:24:01 -0000 1.3
+++ Makefile.am 29 Dec 2003 09:04:20 -0000 1.4
@@ -50,12 +50,17 @@
Xati_SOURCES = \
ati_stub.c
+ATI_LIBS = \
+ libati.a \
+ $(FBDEV_LIBS) \
+ $(VESA_LIBS) \
+ $(DRI_LIBS) \
+ @KDRIVE_LIBS@
+
Xati_LDADD = \
- libati.a \
- $(DRI_LIBS) \
- $(FBDEV_LIBS) \
- $(VESA_LIBS) \
- @KDRIVE_LIBS@ \
- @XSERVER_LIBS@ \
+ $(ATI_LIBS) \
+ @XSERVER_LIBS@ \
$(TSLIB_FLAG)
+
+Xati_DEPENDENCIES = $(ATI_LIBS) @KDRIVE_LIBS@