[xserver-commit] xserver/hw/kdrive/smi Makefile.am,1.7,1.8

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/smi
In directory pdx:/home/anholt/xserver/hw/kdrive/smi

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/smi/Makefile.am,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- Makefile.am	11 Nov 2003 05:46:12 -0000	1.7
+++ Makefile.am	29 Dec 2003 09:04:20 -0000	1.8
@@ -23,10 +23,15 @@
 Xsmi_SOURCES = \
 	smistub.c
 
-Xsmi_LDADD = \
+SMI_LIBS =					\
 	libsmi.a 				\
 	$(top_builddir)/hw/kdrive/fbdev/libfbdev.a \
 	$(top_builddir)/hw/kdrive/vesa/libvesa.a \
-	@KDRIVE_LIBS@				\
+	@KDRIVE_LIBS@
+
+Xsmi_LDADD = \
+	$(SMI_LIBS)				\
 	@XSERVER_LIBS@                          \
 	$(TSLIB_FLAG)
+
+Xsmi_DEPENDENCIES = $(SMI_LIBS) @KDRIVE_LIBS@