mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-17 10:08:07 +02:00
Nothing requires the use of a C preprocessor Using standard file extensions (.man) means no need for .gitignore Use standard directory and makefile Fix trailing whitespaces Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Rémi Cardona <remi@gentoo.org> Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Signed-off-by: Keith Packard <keithp@keithp.com>
19 lines
326 B
Makefile
19 lines
326 B
Makefile
SUBDIRS = man
|
|
|
|
module_LTLIBRARIES = libfbdevhw.la
|
|
|
|
libfbdevhw_la_LDFLAGS = -avoid-version
|
|
|
|
if FBDEVHW
|
|
libfbdevhw_la_SOURCES = fbdevhw.c
|
|
else
|
|
libfbdevhw_la_SOURCES = fbdevhwstub.c
|
|
endif
|
|
|
|
INCLUDES = $(XORG_INCS) -I$(srcdir)/../i2c
|
|
|
|
AM_CFLAGS = $(DIX_CFLAGS) $(XORG_CFLAGS)
|
|
|
|
sdk_HEADERS = fbdevhw.h
|
|
|
|
EXTRA_DIST = fbpriv.h README
|