Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Autotools update #9

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Makefile.am: INCLUDES -> AM_CPPFLAGS
Signed-off-by: Marty E. Plummer <hanetzer@protonmail.com>
hanetzer committed Jan 9, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit ebf57b41b20795ff449d4a2360bf54edd74e2a31
2 changes: 1 addition & 1 deletion decoders/Makefile.am
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ noinst_LTLIBRARIES = libdecoders.la

SUBDIRS = timidity libmpg123

INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/decoders/timidity
AM_CPPFLAGS = -I$(top_srcdir) -I$(top_srcdir)/decoders/timidity

libdecoders_la_SOURCES = \
aiff.c \
2 changes: 1 addition & 1 deletion decoders/libmpg123/Makefile.am
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ endif

# !!! FIXME: get MMX/SSE/Altivec/etc stuff in here.

INCLUDES = -I$(top_srcdir)/decodes/libmpg123
AM_CPPFLAGS = -I$(top_srcdir)/decodes/libmpg123
libmpg123_la_CFLAGS = -DOPT_GENERIC -DREAL_IS_FLOAT -DMPG123_NO_CONFIGURE

libmpg123_la_SOURCES = \
2 changes: 1 addition & 1 deletion decoders/timidity/Makefile.am
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ if USE_TIMIDITY
noinst_LTLIBRARIES = libtimidity.la
endif

INCLUDES = -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)

libtimidity_la_SOURCES = \
common.c \
2 changes: 1 addition & 1 deletion playsound/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
bin_PROGRAMS = playsound playsound_simple

INCLUDES = -I$(top_srcdir)
AM_CPPFLAGS = -I$(top_srcdir)

if USE_PHYSICSFS
PHYSFS_CFLG = -DSUPPORT_PHYSFS=1