mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-19 19:18:09 +02:00
Remove foo_DEPENDENCIES as they weren't guaranteed to just be libs, and loader arguments (-lfoo, -Lfoo) might've crept in.
26 lines
339 B
Makefile
26 lines
339 B
Makefile
INCLUDES = \
|
|
@KDRIVE_INCS@ \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
noinst_LIBRARIES = libfbdev.a
|
|
|
|
if TSLIB
|
|
TSLIB_FLAG = -lts
|
|
endif
|
|
|
|
libfbdev_a_SOURCES = \
|
|
fbdev.c \
|
|
fbdev.h
|
|
|
|
if KDRIVEFBDEV
|
|
bin_PROGRAMS = Xfbdev
|
|
|
|
Xfbdev_SOURCES = \
|
|
fbinit.c
|
|
|
|
Xfbdev_LDADD = \
|
|
libfbdev.a \
|
|
@KDRIVE_LIBS@ \
|
|
@XSERVER_LIBS@ \
|
|
$(TSLIB_FLAG)
|
|
endif
|