mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-06 19:34:26 +00: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
28 lines
382 B
Makefile
28 lines
382 B
Makefile
INCLUDES = \
|
|
@KDRIVE_INCS@ \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
noinst_LIBRARIES = libfbdev.a
|
|
|
|
libfbdev_a_SOURCES = \
|
|
fbdev.c \
|
|
fbdev.h
|
|
|
|
if KDRIVEFBDEV
|
|
bin_PROGRAMS = Xfbdev
|
|
|
|
Xfbdev_SOURCES = \
|
|
fbinit.c
|
|
|
|
Xfbdev_LDADD = \
|
|
libfbdev.a \
|
|
@KDRIVE_LIBS@
|
|
|
|
Xfbdev_DEPENDENCIES = \
|
|
libfbdev.a \
|
|
@KDRIVE_LOCAL_LIBS@
|
|
|
|
relink:
|
|
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
|
|
endif
|