diff options
author | Matt Turner <mattst88@gmail.com> | 2014-01-31 17:37:20 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2014-02-01 12:32:09 -0800 |
commit | 309f2d2020cf2137845b5e3402b0fc7bc9e96c7b (patch) | |
tree | e8947dee1c57fbb26fcb6cf87393f43631d3b345 /src | |
parent | a55d28ee1b31bd99559607d71e47071ef4e3ad41 (diff) |
Use LDADD instead of LDFLAGS/DEPENDENCIES.
This is a lot shorter to type, and still gets the dependencies to work
(tested with touch src/dispatch_common.c; make check, and touch
src/egl_common.c; make check).
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 3bf1243..ceefda2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -115,7 +115,10 @@ libepoxy_la_SOURCES = \ libepoxy_la_LDFLAGS = \ -no-undefined \ -Bsymbolic \ - $(EPOXY_LINK_LIBS) \ + $() + +libepoxy_la_LIBADD = \ + $(EPOXY_LINK_LIBS) \ $() if BUILD_EGL |