Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
878dda5d
Commit
878dda5d
authored
Dec 13, 2011
by
Mans Rullgard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
build: move inclusion of subdir.mak to main subdir loop
Signed-off-by:
Mans Rullgard
<
mans@mansr.com
>
parent
4722a03c
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1 addition
and
14 deletions
+1
-14
Makefile
Makefile
+1
-0
Makefile
libavcodec/Makefile
+0
-2
Makefile
libavdevice/Makefile
+0
-2
Makefile
libavfilter/Makefile
+0
-2
Makefile
libavformat/Makefile
+0
-2
Makefile
libavutil/Makefile
+0
-2
Makefile
libpostproc/Makefile
+0
-2
Makefile
libswscale/Makefile
+0
-2
No files found.
Makefile
View file @
878dda5d
...
@@ -113,6 +113,7 @@ define DOSUBDIR
...
@@ -113,6 +113,7 @@ define DOSUBDIR
$(foreach
V,$(SUBDIR_VARS),$(eval
$(call
RESET,$(V))))
$(foreach
V,$(SUBDIR_VARS),$(eval
$(call
RESET,$(V))))
SUBDIR
:=
$
(
1
)
/
SUBDIR
:=
$
(
1
)
/
include
$(SRC_PATH)/$(1)/Makefile
include
$(SRC_PATH)/$(1)/Makefile
include
$(SRC_PATH)/subdir.mak
endef
endef
$(foreach
D,$(FFLIBS),$(eval
$(call
DOSUBDIR,lib$(D))))
$(foreach
D,$(FFLIBS),$(eval
$(call
DOSUBDIR,lib$(D))))
...
...
libavcodec/Makefile
View file @
878dda5d
...
@@ -694,8 +694,6 @@ DIRS = alpha arm bfin mlib ppc ps2 sh4 sparc x86
...
@@ -694,8 +694,6 @@ DIRS = alpha arm bfin mlib ppc ps2 sh4 sparc x86
CLEANFILES
=
*
_tables.c
*
_tables.h
*
_tablegen
$(HOSTEXESUF)
CLEANFILES
=
*
_tables.c
*
_tables.h
*
_tablegen
$(HOSTEXESUF)
include
$(SRC_PATH)/subdir.mak
$(SUBDIR)dct-test$(EXESUF)
:
$(SUBDIR)dctref.o
$(SUBDIR)dct-test$(EXESUF)
:
$(SUBDIR)dctref.o
TRIG_TABLES
=
cos cos_fixed sin
TRIG_TABLES
=
cos cos_fixed sin
...
...
libavdevice/Makefile
View file @
878dda5d
...
@@ -32,5 +32,3 @@ SKIPHEADERS-$(HAVE_ALSA_ASOUNDLIB_H) += alsa-audio.h
...
@@ -32,5 +32,3 @@ SKIPHEADERS-$(HAVE_ALSA_ASOUNDLIB_H) += alsa-audio.h
SKIPHEADERS-$(HAVE_SNDIO_H)
+=
sndio_common.h
SKIPHEADERS-$(HAVE_SNDIO_H)
+=
sndio_common.h
TESTPROGS
=
timefilter
TESTPROGS
=
timefilter
include
$(SRC_PATH)/subdir.mak
libavfilter/Makefile
View file @
878dda5d
...
@@ -74,5 +74,3 @@ OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o
...
@@ -74,5 +74,3 @@ OBJS-$(CONFIG_NULLSINK_FILTER) += vsink_nullsink.o
DIRS
=
x86
DIRS
=
x86
TOOLS
=
graph2dot lavfi-showfiltfmts
TOOLS
=
graph2dot lavfi-showfiltfmts
include
$(SRC_PATH)/subdir.mak
libavformat/Makefile
View file @
878dda5d
...
@@ -348,6 +348,4 @@ EXAMPLES = metadata output
...
@@ -348,6 +348,4 @@ EXAMPLES = metadata output
TESTPROGS
=
seek
TESTPROGS
=
seek
TOOLS
=
pktdumper probetest
TOOLS
=
pktdumper probetest
include
$(SRC_PATH)/subdir.mak
$(SUBDIR)output-example$(EXESUF)
:
ELIBS = -lswscale
$(SUBDIR)output-example$(EXESUF)
:
ELIBS = -lswscale
libavutil/Makefile
View file @
878dda5d
...
@@ -83,6 +83,4 @@ DIRS = arm bfin sh4 x86
...
@@ -83,6 +83,4 @@ DIRS = arm bfin sh4 x86
ARCH_HEADERS
=
bswap.h intmath.h intreadwrite.h timer.h
ARCH_HEADERS
=
bswap.h intmath.h intreadwrite.h timer.h
include
$(SRC_PATH)/subdir.mak
$(SUBDIR)lzo-test$(EXESUF)
:
ELIBS = -llzo2
$(SUBDIR)lzo-test$(EXESUF)
:
ELIBS = -llzo2
libpostproc/Makefile
View file @
878dda5d
...
@@ -4,5 +4,3 @@ FFLIBS = avutil
...
@@ -4,5 +4,3 @@ FFLIBS = avutil
HEADERS
=
postprocess.h
HEADERS
=
postprocess.h
OBJS
=
postprocess.o
OBJS
=
postprocess.o
include
$(SRC_PATH)/subdir.mak
libswscale/Makefile
View file @
878dda5d
...
@@ -22,5 +22,3 @@ OBJS-$(HAVE_YASM) += x86/scale.o
...
@@ -22,5 +22,3 @@ OBJS-$(HAVE_YASM) += x86/scale.o
TESTPROGS
=
colorspace swscale
TESTPROGS
=
colorspace swscale
DIRS
=
bfin mlib ppc sparc x86
DIRS
=
bfin mlib ppc sparc x86
include
$(SRC_PATH)/subdir.mak
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