xserver-multidpi/hw/kdrive/i810/Makefile.am
Dodji Seketeli 6c89d1237c Kdrive: unbreak kdrive linking
* 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
2007-09-05 17:46:49 +02:00

36 lines
482 B
Makefile

INCLUDES = \
@KDRIVE_INCS@ \
@KDRIVE_CFLAGS@
bin_PROGRAMS = Xi810
noinst_LIBRARIES = libi810.a
libi810_a_SOURCES = \
i810_cursor.c \
i810_video.c \
i810draw.c \
i810draw.h \
i810_reg.h \
i810.c \
i810.h
Xi810_SOURCES = \
i810stub.c
I810_LIBS = \
libi810.a \
@KDRIVE_LIBS@
Xi810_LDADD = \
$(I810_LIBS) \
@KDRIVE_LIBS@
Xi810_DEPENDENCIES = \
libi810.a \
@KDRIVE_LOCAL_LIBS@
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)