Skip to content

Commit

Permalink
Add include/Makefile.am
Browse files Browse the repository at this point in the history
It's generally better to have Makefile.am in every directory rather than
manage files in one directory from Makefile.am in another directory.
  • Loading branch information
proski authored and jsorg71 committed Feb 4, 2017
1 parent 3471fc4 commit 60cd4a1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 1 addition & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ pkgconfig_DATA = rfxcodec.pc
EXTRA_DIST = bootstrap readme.txt

SUBDIRS = \
include \
src \
tests

include_HEADERS = \
include/rfxcodec_encode.h \
include/rfxcodec_decode.h \
include/rfxcodec_common.h
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ AM_CONDITIONAL(WITH_SIMD_AMD64, [test x$simd_arch = xx86_64])
AM_CONDITIONAL(WITH_SIMD_X86, [test x$simd_arch = xi386])

AC_CONFIG_FILES([Makefile
include/Makefile
src/Makefile
tests/Makefile
rfxcodec.pc
Expand Down
4 changes: 4 additions & 0 deletions include/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include_HEADERS = \
rfxcodec_encode.h \
rfxcodec_decode.h \
rfxcodec_common.h

0 comments on commit 60cd4a1

Please sign in to comment.