Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
05f0d56b
Commit
05f0d56b
authored
Jul 24, 2007
by
Damien Fouilleul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Makefile.am: much simpler rules for win32, now that libtoo linking is working
parent
8aa88787
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
35 deletions
+6
-35
src/Makefile.am
src/Makefile.am
+6
-35
No files found.
src/Makefile.am
View file @
05f0d56b
...
...
@@ -11,7 +11,7 @@ EXTRA_DIST = extras/COPYING modules/builtin.h.in libvlc.sym
BUILT_SOURCES
=
modules/builtin.h misc/revision.c
CLEANFILES
=
$(BUILT_SOURCES)
MOSTLYCLEANFILES
=
$(dist_dllimport_DATA)
$(noinst_DATA)
MOSTLYCLEANFILES
=
TOOLBOX
=
srcdir
=
$(top_srcdir)
builddir
=
$(top_builddir)
$(top_srcdir)
/toolbox
...
...
@@ -102,9 +102,9 @@ modules/modules.c: modules/builtin.h
lib_LTLIBRARIES
=
libvlc.la libvlc-control.la
AM_LDFLAGS
=
AM_LDFLAGS
=
-no-undefined
if
HAVE_WIN32
AM_LDFLAGS
+=
-
static
AM_LDFLAGS
+=
-
avoid-version
endif
libvlc_la_SOURCES
=
$(SOURCES_libvlc)
...
...
@@ -113,15 +113,14 @@ libvlc_la_LIBADD = $(INCLUDED_LIBINTL)
libvlc_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
libvlc
`
libvlc_la_CXXFLAGS
=
`
$(VLC_CONFIG)
--cxxflags
libvlc
`
libvlc_la_OBJCFLAGS
=
`
$(VLC_CONFIG)
--objcflags
libvlc
`
libvlc_la_LDFLAGS
=
`
$(VLC_CONFIG)
--libs
libvlc
`
$(AM_LDFLAGS)
\
-
no-undefined
-
export-symbols
$(srcdir)
/libvlc.sym
-version-info
1:0:0
libvlc_la_LDFLAGS
=
`
$(VLC_CONFIG)
--libs
libvlc
`
\
-export-symbols
$(srcdir)
/libvlc.sym
-version-info
1:0:0
libvlc_la_DEPENDENCIES
=
libvlc.sym
libvlc_control_la_SOURCES
=
$(SOURCES_libvlc_control)
libvlc_control_la_LIBADD
=
libvlc.la
libvlc_control_la_CFLAGS
=
`
$(VLC_CONFIG)
--cflags
libvlc
`
libvlc_control_la_LDFLAGS
=
$(AM_LDFLAGS)
\
-no-undefined
-export-symbols-regex
'^_?(libvlc|mediacontrol)_.*'
\
libvlc_control_la_LDFLAGS
=
-export-symbols-regex
'^_?(libvlc|mediacontrol)_.*'
\
-version-info
0:0:0
EXTRA_libvlc_la_SOURCES
=
\
...
...
@@ -150,34 +149,6 @@ if BUILD_GETOPT
libvlc_la_SOURCES
+=
$(SOURCES_libvlc_getopt)
endif
if
HAVE_WIN32
dllimportdir
=
$(libdir)
dist_dllimport_DATA
=
libvlc.dll libvlc.dll.a
noinst_DATA
=
libvlc.def
endif
OBJECTS_libvlc_dll
=
$(libvlc_la_OBJECTS)
$(libvlc_control_la_OBJECTS)
libvlc.dll.a libvlc.def
:
libvlc.dll
@
objs
=
""
;
\
for
s
in
$(OBJECTS_libvlc_dll)
;
do
\
objs
=
"
$$
objs
$$
(dirname "
$$
s
")/.libs/
$
$(
basename
$
${s%.lo}
)
.o"
;
\
done
;
\
echo
$(DLLTOOL)
--output-def
libvlc.def
--output-lib
libvlc.dll.a
-D
$<
$$
objs
;
\
$(DLLTOOL)
--output-def
libvlc.def
--output-lib
libvlc.dll.a
-D
$<
$$
objs
libvlc.dll
:
$(OBJECTS_libvlc_dll)
.la.dll
:
@
ldfl
=
"
`
$(VLC_CONFIG)
--libs
plugin libvlc pic
`
$(INCLUDED_LIBINTL)
"
;
\
objs
=
"
$^
"
;
\
case
`
$(VLC_CONFIG)
--linkage
libvlc
`
in
\
c++
)
ld
=
"
$(CXXLINK)
"
;;
\
c|
*
)
ld
=
"
$(LINK)
"
;;
\
esac
;
\
echo
$$
ld
$$
objs
$$
ldfl
;
\
$$
ld
$$
objs
$$
ldfl
SOURCES_libvlc_beos
=
\
misc/beos_specific.cpp
\
$(NULL)
...
...
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