xserver-multidpi/hw/kdrive/pm2/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

34 lines
498 B
Makefile

INCLUDES = \
@KDRIVE_INCS@ \
-I$(top_srcdir)/hw/kdrive/vesa \
@KDRIVE_CFLAGS@
bin_PROGRAMS = Xpm2
noinst_LIBRARIES = libpm2.a
libpm2_a_SOURCES = \
glint_regs.h \
pm2.c \
pm2_draw.c \
pm2.h
Xpm2_SOURCES = \
pm2stub.c
PM2_LIBS = \
libpm2.a \
$(top_builddir)/hw/kdrive/vesa/libvesa.a \
@KDRIVE_LIBS@
Xpm2_LDADD = \
$(PM2_LIBS) \
@KDRIVE_LIBS@
Xpm2_DEPENDENCIES = \
libpm2.a \
@KDRIVE_LOCAL_LIBS@
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)