diff options
author | Eric Anholt <[email protected]> | 2012-04-16 14:33:34 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-04-19 16:32:46 -0700 |
commit | 40da3b03204b877c2c98eae65ada44ebd9518a46 (patch) | |
tree | 0d670ae101b97851070e6cf4c41623a8f3a7d8ba /tests | |
parent | bf3304a84b60a25bbc9de14d11af6e423939d7c3 (diff) |
glx: Use AM_CPPFLAGS to pass -I and -D to both C and C++ compiles.
Reviewed-by: Kenneth Graunke <[email protected]>
Reviewed-by: Adam Jackson <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/glx/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/glx/Makefile.am b/tests/glx/Makefile.am index f5581d638cc..7f93fd74de8 100644 --- a/tests/glx/Makefile.am +++ b/tests/glx/Makefile.am @@ -1,10 +1,8 @@ -INC = \ +AM_CPPFLAGS = \ -I$(top_builddir)/src/gtest/include \ -I$(top_builddir)/src/mapi \ - -I$(top_builddir)/src/glx - -AM_CFLAGS = $(INC) $(X11_CFLAGS) -AM_CXXFLAGS = $(INC) $(X11_CFLAGS) + -I$(top_builddir)/src/glx \ + $(X11_CFLAGS) if HAVE_XCB_GLX_CREATE_CONTEXT TESTS = glx_unittest |