tests: Avoid libtool message
The "copying selected object files" message appears as some source files have the same name, and some objects are included twice. Reviewed-by: Adam Jackson <ajax@redhat.com> Signed-off-by: Mihail Konev <k.mvc@ya.ru>
This commit is contained in:
parent
785053d033
commit
45546219e1
|
@ -9,7 +9,10 @@ liblinuxev56_la_SOURCES = lnx_ev56.c
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if LNXACPI
|
if LNXACPI
|
||||||
ACPI_SRCS = lnx_acpi.c lnx_apm.c
|
ACPI_SRCS = lnx_acpi.c
|
||||||
|
if !LNXAPM
|
||||||
|
ACPI_SRCS += lnx_apm.c
|
||||||
|
endif
|
||||||
XORG_CFLAGS += -DHAVE_ACPI
|
XORG_CFLAGS += -DHAVE_ACPI
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
noinst_LTLIBRARIES = libramdac.la
|
noinst_LTLIBRARIES = libramdac.la
|
||||||
|
|
||||||
libramdac_la_SOURCES = xf86RamDac.c xf86RamDacCmap.c \
|
libramdac_la_SOURCES = xf86RamDac.c xf86RamDacCmap.c \
|
||||||
xf86Cursor.c xf86HWCurs.c IBM.c BT.c TI.c
|
xf86CursorRD.c xf86HWCurs.c IBM.c BT.c TI.c
|
||||||
|
|
||||||
sdk_HEADERS = BT.h IBM.h TI.h xf86Cursor.h xf86RamDac.h
|
sdk_HEADERS = BT.h IBM.h TI.h xf86Cursor.h xf86RamDac.h
|
||||||
|
|
||||||
|
|
|
@ -57,6 +57,8 @@ if SPECIAL_DTRACE_OBJECTS
|
||||||
TEST_LDADD += $(OS_LIB) $(DIX_LIB)
|
TEST_LDADD += $(OS_LIB) $(DIX_LIB)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
xkb_SOURCES = test_xkb.c
|
||||||
|
|
||||||
xkb_LDADD=$(TEST_LDADD)
|
xkb_LDADD=$(TEST_LDADD)
|
||||||
input_LDADD=$(TEST_LDADD)
|
input_LDADD=$(TEST_LDADD)
|
||||||
xtest_LDADD=$(TEST_LDADD)
|
xtest_LDADD=$(TEST_LDADD)
|
||||||
|
@ -99,10 +101,6 @@ if DRI2
|
||||||
libxservertest_la_LIBADD += $(top_builddir)/hw/xfree86/dri2/libdri2.la
|
libxservertest_la_LIBADD += $(top_builddir)/hw/xfree86/dri2/libdri2.la
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if DRI3
|
|
||||||
libxservertest_la_LIBADD += $(top_builddir)/dri3/libdri3.la
|
|
||||||
endif
|
|
||||||
|
|
||||||
else
|
else
|
||||||
nodist_libxservertest_la_SOURCES = \
|
nodist_libxservertest_la_SOURCES = \
|
||||||
ddxstubs.c \
|
ddxstubs.c \
|
||||||
|
|
Loading…
Reference in New Issue