mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-05-25 15:18:14 +02:00
The DDX specific command line parsing function only gets called if command line arguments are present. Therefore this function is not suitable to initialize mandatory global variables. Replace main() instead. Signed-off-by: Egbert Eich <eich@freedesktop.org> Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Keith Packard <keithp@keithp.com>
31 lines
473 B
Makefile
31 lines
473 B
Makefile
AM_CPPFLAGS = \
|
|
@KDRIVE_INCS@ \
|
|
@KDRIVE_CFLAGS@
|
|
|
|
noinst_LTLIBRARIES = libfake.la
|
|
|
|
bin_PROGRAMS = Xfake
|
|
|
|
libfake_la_SOURCES = \
|
|
fake.c \
|
|
kbd.c \
|
|
os.c \
|
|
mouse.c \
|
|
fake.h
|
|
|
|
Xfake_SOURCES = \
|
|
fakeinit.c
|
|
|
|
Xfake_LDADD = \
|
|
libfake.la \
|
|
@KDRIVE_MAIN_LIB@ \
|
|
@KDRIVE_LIBS@
|
|
|
|
Xfake_LDFLAGS = $(LD_EXPORT_SYMBOLS_FLAG)
|
|
|
|
Xfake_DEPENDENCIES = \
|
|
libfake.la \
|
|
@KDRIVE_LOCAL_LIBS@
|
|
|
|
relink:
|
|
$(AM_V_at)rm -f $(bin_PROGRAMS) && $(MAKE) $(bin_PROGRAMS)
|