mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-18 10:38:07 +02:00
* configure.ac: re-sort Kdrive libs so that symbols get properly resolved.
Basically, all some libs are present in both $KDRIVE_LIBS and $XSERVER_LIBS,
and some libs orders are not correct. So I made sure Kdrive servers don't have
to link against $KDRIVE_LIBS *and* $XSERVER_LIBS. They just have to link
against $KDRIVE_LIBS now.
* hw/kdrive/*/Makefile.am: update those makefile to reflect the change in configure.ac
33 lines
490 B
Makefile
33 lines
490 B
Makefile
INCLUDES = \
|
|
@KDRIVE_INCS@ \
|
|
-I$(top_srcdir)/hw/kdrive/vesa \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
bin_PROGRAMS = Xvia
|
|
|
|
noinst_LIBRARIES = libvia.a
|
|
|
|
libvia_a_SOURCES = \
|
|
via.c \
|
|
viadraw.c \
|
|
viadraw.h \
|
|
via.h \
|
|
via_regs.h
|
|
|
|
Xvia_SOURCES = \
|
|
viastub.c
|
|
|
|
VIA_LIBS = \
|
|
libvia.a \
|
|
$(top_builddir)/hw/kdrive/vesa/libvesa.a
|
|
|
|
Xvia_LDADD = \
|
|
$(VIA_LIBS) \
|
|
@KDRIVE_LIBS@
|
|
|
|
Xvia_DEPENDENCIES = \
|
|
libvia.a \
|
|
@KDRIVE_LOCAL_LIBS@
|
|
|
|
relink:
|
|
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
|