mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-17 04:18:07 +02:00
Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Mikhail Gusarov <dottedmag@dottedmag.net> Reviewed-by: Alan Coopersmith <alan.coopersmith@sun.com> Reviewed-by: Julien Cristau <jcristau@debian.org>
29 lines
435 B
Makefile
29 lines
435 B
Makefile
INCLUDES = \
|
|
@KDRIVE_INCS@ \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
noinst_LTLIBRARIES = libfbdev.la
|
|
|
|
libfbdev_la_SOURCES = \
|
|
fbdev.c \
|
|
fbdev.h
|
|
|
|
if KDRIVEFBDEV
|
|
bin_PROGRAMS = Xfbdev
|
|
|
|
Xfbdev_SOURCES = \
|
|
fbinit.c
|
|
|
|
Xfbdev_LDADD = \
|
|
libfbdev.la \
|
|
@KDRIVE_LIBS@
|
|
|
|
Xfbdev_DEPENDENCIES = \
|
|
libfbdev.la \
|
|
$(KDRIVE_PURE_LIBS)
|
|
|
|
Xfbdev_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
|
|
|
|
relink:
|
|
rm -f $(bin_PROGRAMS) && $(MAKE) $(bin_PROGRAMS)
|
|
endif
|