Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
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
OBJS
=
ffmpeg.o ffserver.o
SRCS
=
$
(
OBJS:.o
=
.c
)
$
(
ASM_OBJS:.o
=
.s
)
FFLIBS
=
-L
./libavformat
-lavformat
-L
./libavcodec
-lavcodec
all
:
lib $(PROG) $(VHOOK)
...
...
@@ -61,18 +62,15 @@ lib:
$(MAKE)
-C
libavcodec all
$(MAKE)
-C
libavformat all
ffmpeg_g$(EXE)
:
ffmpeg.o $(DEP_LIBS)
$(CC)
$(LDFLAGS)
-o
$@
ffmpeg.o
-L
./libavcodec
-L
./libavformat
\
-lavformat
-lavcodec
$(EXTRALIBS)
ffmpeg_g$(EXE)
:
ffmpeg.o .libs
$(CC)
$(LDFLAGS)
-o
$@
ffmpeg.o
$(FFLIBS)
$(EXTRALIBS)
ffmpeg$(EXE)
:
ffmpeg_g$(EXE)
cp
-p
$<
$@
$(STRIP)
$@
ffserver$(EXE)
:
ffserver.o $(DEP_LIBS)
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
\
-o
$@
ffserver.o
-L
./libavcodec
-L
./libavformat
\
-lavformat
-lavcodec
$(EXTRALIBS)
ffserver$(EXE)
:
ffserver.o .libs
$(CC)
$(LDFLAGS)
$(FFSLDFLAGS)
-o
$@
ffserver.o
$(FFLIBS)
$(EXTRALIBS)
ffplay
:
ffmpeg$(EXE)
ln
-sf
$<
$@
...
...
@@ -111,11 +109,14 @@ endif
.depend
:
$(SRCS)
$(CC)
-MM
$(CFLAGS)
$^
1>.depend
.libs
:
lib
touch
.libs
clean
:
$(CLEANVHOOK)
$(MAKE)
-C
libavcodec clean
$(MAKE)
-C
libavformat 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
:
$(MAKE)
-C
vhook clean
...
...
@@ -141,6 +142,8 @@ tar:
(
cd
/tmp
;
tar
zcvf ~/
$(FILE)
.tar.gz
$(FILE)
--exclude
CVS
)
rm
-rf
/tmp/
$(FILE)
.PHONY
:
lib
ifneq
($(wildcard
.depend),)
include
.depend
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