diff options
author | Eric Anholt <anholt@freebsd.org> | 2006-02-16 00:14:11 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2006-02-16 00:14:11 +0000 |
commit | dc0354104cb4057dfcc7b2ccb8e2ae8474d70b15 (patch) | |
tree | e1badf347bf977fa1631f90a7997a0398c842639 /exa/Makefile.am | |
parent | c170aa830d0ce3dbff6b30081e04c3f91bf921be (diff) |
Move EXA implementation up to the top level and remove its XFree86
dependencies. It was nearly abstract enough already to be used by
multiple DDXes. This will be useful for EXA development through
providing a fake acceleration implementation within Xephyr, so that
testing can be done on new EXA code without worrying about buggy
drivers.
Diffstat (limited to 'exa/Makefile.am')
-rw-r--r-- | exa/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/exa/Makefile.am b/exa/Makefile.am index dcb944cd8..a4992052d 100644 --- a/exa/Makefile.am +++ b/exa/Makefile.am @@ -1,14 +1,12 @@ -module_LTLIBRARIES = libexa.la +noinst_LTLIBRARIES = libexa.la sdk_HEADERS = exa.h -libexa_la_LDFLAGS = -avoid-version - INCLUDES = \ $(XORG_INCS) \ - -I$(srcdir)/../../../miext/cw + -I$(srcdir)/../miext/cw -AM_CFLAGS = $(XORG_CFLAGS) @SERVER_DEFINES@ @MODULE_DEFINES@ @LOADER_DEFINES@ +AM_CFLAGS = $(XORG_CFLAGS) @SERVER_DEFINES@ @LOADER_DEFINES@ $(DIX_CFLAGS) libexa_la_SOURCES = \ exa.c \ |