mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-27 20:58:52 +00:00
28 lines
382 B
Makefile
28 lines
382 B
Makefile
INCLUDES = \
|
|
@KDRIVE_INCS@ \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
noinst_LIBRARIES = libfbdev.a
|
|
|
|
libfbdev_a_SOURCES = \
|
|
fbdev.c \
|
|
fbdev.h
|
|
|
|
if KDRIVEFBDEV
|
|
bin_PROGRAMS = Xfbdev
|
|
|
|
Xfbdev_SOURCES = \
|
|
fbinit.c
|
|
|
|
Xfbdev_LDADD = \
|
|
libfbdev.a \
|
|
@KDRIVE_LIBS@
|
|
|
|
Xfbdev_DEPENDENCIES = \
|
|
libfbdev.a \
|
|
$(KDRIVE_PURE_LIBS)
|
|
|
|
relink:
|
|
rm -f $(bin_PROGRAMS) && make $(bin_PROGRAMS)
|
|
endif
|