Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
be0b42d9
Commit
be0b42d9
authored
Aug 09, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./Makefile: fixed a sed command syntax.
parent
05e3077c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
Makefile
Makefile
+3
-3
No files found.
Makefile
View file @
be0b42d9
...
...
@@ -410,7 +410,7 @@ src/misc/modules_builtin.h: Makefile.opts Makefile Makefile.config
@
rm
-f
$@
&&
cp
$@
.in
$@
ifneq
(,$(BUILTINS))
@
for
i
in
$(BUILTINS)
;
do
\
echo
"int vlc_entry__modules_"
`
echo
$$
i |
sed
-e
'y@/@_@
;
s@\..*@@'
`
"( module_t* );"
>>
$@
;
\
echo
"int vlc_entry__modules_"
`
echo
$$
i |
sed
-e
'y@/@_@
'
-e
'
s@\..*@@'
`
"( module_t* );"
>>
$@
;
\
done
@
echo
""
>>
$@
;
endif
...
...
@@ -419,7 +419,7 @@ endif
@
echo
" {
\\
"
>>
$@
;
ifneq
(,$(BUILTINS))
@
for
i
in
$(BUILTINS)
;
do
\
echo
" ALLOCATE_BUILTIN(modules_"
`
echo
$$
i |
sed
-e
'y@/@_@
;
s@\..*@@'
`
");
\\
"
>>
$@
;
\
echo
" ALLOCATE_BUILTIN(modules_"
`
echo
$$
i |
sed
-e
'y@/@_@
'
-e
'
s@\..*@@'
`
");
\\
"
>>
$@
;
\
done
endif
@
echo
" } while( 0 );"
>>
$@
;
...
...
@@ -484,7 +484,7 @@ builtins: Makefile.modules Makefile.opts Makefile.dep Makefile $(BUILTIN_OBJ)
plugins
:
Makefile.modules Makefile.opts Makefile.dep Makefile $(PLUGIN_OBJ)
modules/%.a modules/%.so
:
$(H_OBJ) FORCE
cd
$(
shell
echo
$@
|
sed
-e
's@\(.*\)/.*@\1@'
)
&&
$(MAKE)
-f
$(
shell
echo
$@
|
sed
-e
's@[^/]*/@../@g'
-e
's@\(.*\)/.*@\1@'
)
/Makefile.modules
$(
shell
echo
$@
|
sed
-e
's@.*/@@'
)
PARENT
=
$(
shell
echo
$@
|
sed
-e
's@[^/]*/@../@g'
-e
's@\(.*\)/.*@\1@'
)
MODULE_PATH
=
$(
shell
echo
$@
|
sed
-e
'y@/@_@
;
s@\..*@@'
)
cd
$(
shell
echo
$@
|
sed
-e
's@\(.*\)/.*@\1@'
)
&&
$(MAKE)
-f
$(
shell
echo
$@
|
sed
-e
's@[^/]*/@../@g'
-e
's@\(.*\)/.*@\1@'
)
/Makefile.modules
$(
shell
echo
$@
|
sed
-e
's@.*/@@'
)
PARENT
=
$(
shell
echo
$@
|
sed
-e
's@[^/]*/@../@g'
-e
's@\(.*\)/.*@\1@'
)
MODULE_PATH
=
$(
shell
echo
$@
|
sed
-e
'y@/@_@
'
-e
'
s@\..*@@'
)
#
# Mozilla plugin target
...
...
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