Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
vo-amrwbenc
Commits
32a10457
Commit
32a10457
authored
Mar 28, 2011
by
Luca Barbato
Committed by
Martin Storsjo
Mar 28, 2011
Browse files
Make the encoding example optional
parent
81ac02b2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
Makefile.am
Makefile.am
+5
-2
configure.ac
configure.ac
+5
-0
No files found.
Makefile.am
View file @
32a10457
...
...
@@ -104,14 +104,17 @@ if ARMV5E
endif
endif
noinst_HEADERS
=
amrwbenc/inc/
*
.h amrwbenc/inc/
*
.tab common/include/
*
.h
if
EXAMPLE
bin_PROGRAMS
=
amrwb-enc
$(EXEEXT)
amrwb_enc_LDADD
=
libvo-amrwbenc.la
amrwb_enc_SOURCES
=
amrwb-enc.c wavreader.c
noinst_HEADERS
=
wavreader.h
noinst_HEADERS
+=
wavreader.h
endif
noinst_HEADERS
+=
amrwbenc/inc/
*
.h amrwbenc/inc/
*
.tab common/include/
*
.h
EXTRA_DIST
=
amrwbenc/
*
.cpp amrwbenc/
*
.mk amrwbenc/SampleCode
\
amrwbenc/build amrwbenc/doc amrwbenc/
*
.txt
\
...
...
configure.ac
View file @
32a10457
...
...
@@ -22,10 +22,15 @@ AC_ARG_ENABLE([armv7neon],
[AS_HELP_STRING([--enable-armv7neon],
[enable ARMV7 neon assembler (default is no)])],
[armv7neon=$enableval], [armv7neon=no])
AC_ARG_ENABLE([example],
[AS_HELP_STRING([--enable-example],
[enable example encoding program (default is no)])],
[example=$enableval], [example=no])
# Automake conditionals to set
AM_CONDITIONAL(ARMV5E, test x$armv5e = xyes)
AM_CONDITIONAL(ARMV7NEON, test x$armv7neon = xyes)
AM_CONDITIONAL(EXAMPLE, test x$example = xyes)
# Checks for programs.
AM_PROG_AS
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment