Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Opus
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Alexander Traud
Opus
Commits
4def273b
Commit
4def273b
authored
14 years ago
by
Jean-Marc Valin
Browse files
Options
Downloads
Patches
Plain Diff
Compilation fixed on Linux
parent
fd1a5db1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+8
-8
8 additions, 8 deletions
Makefile
with
8 additions
and
8 deletions
Makefile
+
8
−
8
View file @
4def273b
...
...
@@ -34,7 +34,7 @@ LDFLAGS += $(call ldflags-from-ldlibdirs,$(LDLIBDIRS))
LDLIBS
+=
$(
call ldlibs-from-libs,
$(
LIBS
))
COMPILE.c.cmdline
=
$(
CC
)
-c
$(
CFLAGS
)
-o
$@
$<
LINK.o.cmdline
=
$(
LINK.o
)
-lm
$^
$(
LDLIBS
)
-o
$@
$(
EXESUFFIX
)
LINK.o.cmdline
=
$(
LINK.o
)
-lm
$^
$(
LDLIBS
)
-lcelt0
-o
$@
$(
EXESUFFIX
)
ARCHIVE.cmdline
=
$(
AR
)
$(
ARFLAGS
)
$@
$^
&&
$(
RANLIB
)
$@
%$(OBJSUFFIX)
:
%.c
...
...
@@ -44,34 +44,34 @@ ifneq (,$(filter FIXED_POINT, $(CDEFINES)))
# Directives
CINCLUDES
+=
interface src_common src_
fix
src_SigProc_FIX
test
CINCLUDES
+=
../celt/libcelt/
interface src_common src_
FIX
src_SigProc_FIX
test
# VPATH e.g. VPATH = src:../headers
VPATH
=
./
\
interface
\
src_common
\
src_
fix
\
src_
FIX
\
src_SigProc_FIX
\
test
SRCS_C
=
$(
wildcard src_common/
*
.c src_
fix
/
*
.c src_SigProc_FIX/
*
.c
)
SRCS_C
=
$(
wildcard src_common/
*
.c src_
FIX
/
*
.c src_SigProc_FIX/
*
.c
)
else
# Directives
CINCLUDES
+=
interface src_common src_
fix
src_SigProc_FIX src_SigProc_FLP
test
CINCLUDES
+=
../celt/libcelt
interface src_common src_
FLP src_FIX
src_SigProc_FIX src_SigProc_FLP
test
# VPATH e.g. VPATH = src:../headers
VPATH
=
./
\
interface
\
src_common
\
src_
flp
\
src_
FLP
\
src_SigProc_FIX
\
src_SigProc_FLP
\
test
SRCS_C
=
$(
wildcard src_common/
*
.c src_
flp
/
*
.c src_SigProc_FIX/
*
.c src_SigProc_FLP/
*
.c
)
SRCS_C
=
$(
wildcard src_common/
*
.c src_
FLP
/
*
.c src_SigProc_FIX/
*
.c src_SigProc_FLP/
*
.c
)
endif
...
...
@@ -94,7 +94,7 @@ SIGNALCMP_OBJS := $(patsubst %.c,%$(OBJSUFFIX),$(SIGNALCMP_SRCS_C))
LIBS
=
\
$(LIB_NAME)
LDLIBDIRS
=
./
LDLIBDIRS
=
./
../celt/libcelt/.libs/
# Rules
default
:
all
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment