diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2013-11-05 21:36:18 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2013-11-05 21:47:55 -0500 |
commit | 3b70b526f1dd4ccf35a63fc7d385d4d7098b8f6a (patch) | |
tree | e74aec42635a03ac391fb874d7f9920ebe53e2c4 | |
parent | f3fbd8e5026c0bb8b4d7f48875550bd3711e3c6e (diff) |
make: list non installed headers under the _SOURCES variable
Recommended by Automake:
http://www.gnu.org/software/automake/manual/automake.html#Headers
Also, this header is missing in the lint target $(libxshmfence_la_SOURCES)
As a bonus, all other libraries are following this advice.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | src/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 0c1106e..d0a75cf 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,8 @@ lib_LTLIBRARIES = libxshmfence.la libxshmfence_la_SOURCES = \ - xshmfence.c - -noinst_HEADERS = xshmfenceint.h + xshmfence.c \ + xshmfenceint.h AM_CFLAGS = $(CWARNFLAGS) |