Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
5fa75a1f
Commit
5fa75a1f
authored
Aug 10, 2002
by
Sam Hocevar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ./Makefile: fixed "make package-win32".
parent
5bbe0409
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
Makefile
Makefile
+10
-5
No files found.
Makefile
View file @
5fa75a1f
...
...
@@ -318,12 +318,17 @@ package-win32:
for
file
in
AUTHORS COPYING ChangeLog README FAQ TODO
;
\
do
cp
$$
file tmp/
$
${file}
.txt
;
\
unix2dos tmp/
$
${file}
.txt
;
done
mkdir
tmp/modules
cp
$
(
PLUGINS:%
=
modules/%.so
)
tmp/modules/
# don't include these two
#rm -f tmp/modules/gtk.so tmp/modules/sdl.so
mkdir
tmp/plugins
ifneq
(,$(PLUGINS))
for
i
in
$(PLUGINS)
;
do if
test
$$
i
!=
intfwin
;
then
$(STRIP)
tmp/modules/
$$
i.so
;
fi
;
done
for
i
in
$(PLUGINS)
;
do
\
DIR
=
`
echo
$$
i |
cut
-f1
-d
/
`
;
\
mkdir
-p
tmp/plugins/
$$
DIR
;
\
cp
modules/
$$
i.so tmp/plugins/
$$
DIR
;
\
if
test
$$
i
!=
gui/win32/win32
;
then
\
$(STRIP)
\
tmp/plugins/
$$
DIR/
`
echo
$$
i |
sed
-e
's@.*/@@'
`
.so
;
\
fi
;
\
done
endif
mkdir
tmp/share
for
file
in
default8x16.psf default8x9.psf
;
\
...
...
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