xserver-multidpi/exa/Makefile.am
Alan Coopersmith 0ba7fc8472 Stop including inline assembly .il file for Solaris Studio builds
Since all the inb/outb/etc. use in the X server itself (except for
xf86SlowBcopy) has been replaced by calls to libpciaccess, we no
longer need to pass inline assembly files to replace the gcc inline
assembly from hw/xfree86/common/compiler.h when building Xorg itself.

The .il files are still generated and installed in the SDK for the
benefit of drivers who may use them.

Binary diff of before and after showed that xf86SlowBcopy was the
only function changed across the Xorg binary and all modules built
in the Xserver build, it just calls the outb() function now instead
of having the outb instructions inlined, making it a slightly slower
bcopy.

Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
2013-11-14 13:12:21 +09:00

27 lines
402 B
Makefile

noinst_LTLIBRARIES = libexa.la
if XORG
sdk_HEADERS = exa.h
endif
AM_CPPFLAGS = \
$(XORG_INCS) \
-I$(srcdir)/../miext/cw
AM_CFLAGS = $(XORG_CFLAGS) $(DIX_CFLAGS)
libexa_la_SOURCES = \
exa.c \
exa.h \
exa_classic.c \
exa_migration_classic.c \
exa_driver.c \
exa_mixed.c \
exa_migration_mixed.c \
exa_accel.c \
exa_glyphs.c \
exa_offscreen.c \
exa_render.c \
exa_priv.h \
exa_unaccel.c