2004-04-13 22:18:36 +00:00
|
|
|
|
|
|
|
plugin_LTLIBRARIES = \
|
2004-12-08 17:40:37 +00:00
|
|
|
libthreadscheduler.la
|
2004-04-20 22:22:01 +00:00
|
|
|
AS_LIBTOOL_LIBS = \
|
2004-12-08 17:40:37 +00:00
|
|
|
libthreadscheduler
|
2002-09-12 21:00:57 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
libthreadscheduler_la_SOURCES = threadscheduler.c
|
|
|
|
libthreadscheduler_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
|
|
libthreadscheduler_la_LIBADD = $(GST_OBJ_LIBS)
|
|
|
|
libthreadscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
2003-03-11 21:01:31 +00:00
|
|
|
|
2004-12-08 17:40:37 +00:00
|
|
|
noinst_HEADERS =
|
2004-04-20 22:22:01 +00:00
|
|
|
|
|
|
|
if AS_LIBTOOL_WIN32
|
|
|
|
|
|
|
|
as_libtool_noinst_DATA_files = $(AS_LIBTOOL_LIB).lib
|
|
|
|
|
|
|
|
# depend on this in install-data-local
|
|
|
|
as-libtool-install-data-local:
|
|
|
|
for i in $(AS_LIBTOOL_LIBS); do \
|
|
|
|
$(INSTALL) $$i.lib $(DESTDIR)$(libdir) ; \
|
|
|
|
$(INSTALL) $$i.def $(DESTDIR)$(libdir) ; \
|
|
|
|
done
|
|
|
|
|
|
|
|
# depend on this in uninstall-local
|
|
|
|
as-libtool-uninstall-local:
|
|
|
|
for i in $(AS_LIBTOOL_LIBS); do \
|
|
|
|
-rm $(DESTDIR)$(libdir)/$$i.lib ; \
|
|
|
|
-rm $(DESTDIR)$(libdir)/$$i.def ; \
|
|
|
|
done
|
|
|
|
else
|
|
|
|
|
2004-04-21 02:43:55 +00:00
|
|
|
as_libtool_LDFLAGS =
|
|
|
|
|
2004-04-20 22:22:01 +00:00
|
|
|
as-libtool-install-data-local:
|
|
|
|
as-libtool-uninstall-local:
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
%.lib: %.def
|
|
|
|
dlltool -S $(CC) -f "-c" --export-all-symbols --input-def \
|
|
|
|
%.def --output-lib %.lib
|
|
|
|
|
|
|
|
%.def: %.la
|
|
|
|
echo EXPORTS >%.def.tmp
|
|
|
|
nm --defined-only -g .libs/%.a | \
|
|
|
|
grep ^0 | \
|
|
|
|
awk '{ print $$3 }' | \
|
|
|
|
sed 's/^/ /' >>%.def.tmp
|
|
|
|
mv %.def.tmp %.def
|