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
cf2818b0
Commit
cf2818b0
authored
Mar 12, 2003
by
Zdenek Kabelac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* quick fix to support make -j x
Originally committed as revision 1670 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
e803f1a2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
Makefile
Makefile
+11
-8
No files found.
Makefile
View file @
cf2818b0
...
@@ -54,6 +54,7 @@ endif
...
@@ -54,6 +54,7 @@ endif
OBJS
=
ffmpeg.o ffserver.o
OBJS
=
ffmpeg.o ffserver.o
SRCS
=
$
(
OBJS:.o
=
.c
)
$
(
ASM_OBJS:.o
=
.s
)
SRCS
=
$
(
OBJS:.o
=
.c
)
$
(
ASM_OBJS:.o
=
.s
)
FFLIBS
=
-L
./libavformat
-lavformat
-L
./libavcodec
-lavcodec
all
:
lib $(PROG) $(VHOOK)
all
:
lib $(PROG) $(VHOOK)
...
@@ -61,18 +62,15 @@ lib:
...
@@ -61,18 +62,15 @@ lib:
$(MAKE)
-C
libavcodec all
$(MAKE)
-C
libavcodec all
$(MAKE)
-C
libavformat all
$(MAKE)
-C
libavformat all
ffmpeg_g$(EXE)
:
ffmpeg.o $(DEP_LIBS)
ffmpeg_g$(EXE)
:
ffmpeg.o .libs
$(CC)
$(LDFLAGS)
-o
$@
ffmpeg.o
-L
./libavcodec
-L
./libavformat
\
$(CC)
$(LDFLAGS)
-o
$@
ffmpeg.o
$(FFLIBS)
$(EXTRALIBS)
-lavformat
-lavcodec
$(EXTRALIBS)
ffmpeg$(EXE)
:
ffmpeg_g$(EXE)
ffmpeg$(EXE)
:
ffmpeg_g$(EXE)
cp
-p
$<
$@
cp
-p
$<
$@
$(STRIP)
$@
$(STRIP)
$@
ffserver$(EXE)
:
ffserver.o $(DEP_LIBS)
ffserver$(EXE)
:
ffserver.o .libs
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
\
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
-o
$@
ffserver.o
$(FFLIBS)
$(EXTRALIBS)
-o
$@
ffserver.o
-L
./libavcodec
-L
./libavformat
\
-lavformat
-lavcodec
$(EXTRALIBS)
ffplay
:
ffmpeg$(EXE)
ffplay
:
ffmpeg$(EXE)
ln
-sf
$<
$@
ln
-sf
$<
$@
...
@@ -111,11 +109,14 @@ endif
...
@@ -111,11 +109,14 @@ endif
.depend
:
$(SRCS)
.depend
:
$(SRCS)
$(CC)
-MM
$(CFLAGS)
$^
1>.depend
$(CC)
-MM
$(CFLAGS)
$^
1>.depend
.libs
:
lib
touch
.libs
clean
:
$(CLEANVHOOK)
clean
:
$(CLEANVHOOK)
$(MAKE)
-C
libavcodec clean
$(MAKE)
-C
libavcodec clean
$(MAKE)
-C
libavformat clean
$(MAKE)
-C
libavformat clean
$(MAKE)
-C
tests clean
$(MAKE)
-C
tests clean
rm
-f
*
.o
*
.d
*
~ .depend gmon.out TAGS ffmpeg_g
$(EXE)
$(PROG)
rm
-f
*
.o
*
.d
*
~ .
libs .
depend gmon.out TAGS ffmpeg_g
$(EXE)
$(PROG)
clean-vhook
:
clean-vhook
:
$(MAKE)
-C
vhook clean
$(MAKE)
-C
vhook clean
...
@@ -141,6 +142,8 @@ tar:
...
@@ -141,6 +142,8 @@ tar:
(
cd
/tmp
;
tar
zcvf ~/
$(FILE)
.tar.gz
$(FILE)
--exclude
CVS
)
(
cd
/tmp
;
tar
zcvf ~/
$(FILE)
.tar.gz
$(FILE)
--exclude
CVS
)
rm
-rf
/tmp/
$(FILE)
rm
-rf
/tmp/
$(FILE)
.PHONY
:
lib
ifneq
($(wildcard
.depend),)
ifneq
($(wildcard
.depend),)
include
.depend
include
.depend
endif
endif
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