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

33 lines
491 B
Makefile

INCLUDES = \
@KDRIVE_INCS@ \
@KDRIVE_CFLAGS@
bin_PROGRAMS = Xepson
noinst_LIBRARIES = libepson.a
libepson_a_SOURCES = \
epson13806.c \
epson13806.h \
epson13806draw.c\
epson13806draw.h\
epson13806reg.h
Xepson_SOURCES = \
epson13806stub.c
EPSON_LIBS = \
libepson.a \
@KDRIVE_LIBS@
Xepson_LDADD = \
$(EPSON_LIBS) \
@KDRIVE_LIBS@
Xepson_DEPENDENCIES = \
libepson.a \
@KDRIVE_LOCAL_LIBS@
relink:
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)