Changeset 2040035d0fc94a30b27850f8bb9f86c0093cf992
- Timestamp:
- 21/04/08 20:54:50
(6 months ago)
- Author:
- Rémi Denis-Courmont <rem@videolan.org>
- git-committer:
- Rémi Denis-Courmont <rem@videolan.org> 1208804090 +0300
- git-parent:
[76e8a579bedd70c1f6ac0364f1d99f7a732124c5]
- git-author:
- Rémi Denis-Courmont <rem@videolan.org> 1208804090 +0300
- Message:
Remove dead and ugly code of mine
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rab799a3 |
r2040035 |
|
| 7 | 7 | |
|---|
| 8 | 8 | NULL = |
|---|
| 9 | | SUFFIXES = _plugin$(LIBEXT) _plugin.la |
|---|
| 10 | | |
|---|
| | 9 | SUFFIXES = |
|---|
| 11 | 10 | libvlcdir = $(libdir)/vlc/$(basedir) |
|---|
| 12 | 11 | libvlc_LTLIBRARIES = |
|---|
| … | … | |
| 48 | 47 | test -z "$$fail" |
|---|
| 49 | 48 | |
|---|
| 50 | | # Build a plugin with the adequate linker and linker's flags |
|---|
| 51 | | _plugin.la_plugin$(LIBEXT): |
|---|
| 52 | | @mod="$*" ; mod=$${mod#lib} ; \ |
|---|
| 53 | | ldfl="`$(VLC_CONFIG) --libs plugin $$mod` $(LIBVLC) -u $(SYMPREF)$(VLC_ENTRY)" ; \ |
|---|
| 54 | | case `$(VLC_CONFIG) --linkage $$mod` in \ |
|---|
| 55 | | c++) ld="$(CXXLINK)" ;; \ |
|---|
| 56 | | objc) ld="$(OBJCLINK)" ;; \ |
|---|
| 57 | | c|*) ld="$(LINK)" ;; \ |
|---|
| 58 | | esac ; \ |
|---|
| 59 | | echo $$ld $< $$ldfl ; \ |
|---|
| 60 | | $$ld $< $$ldfl |
|---|
| 61 | | |
|---|
| 62 | 49 | if MAINTAINER_MODE |
|---|
| 63 | 50 | $(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf |
|---|