Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
5fa75a1f
Commit
5fa75a1f
authored
Aug 10, 2002
by
Sam Hocevar
Browse files
* ./Makefile: fixed "make package-win32".
parent
5bbe0409
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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