mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
17 lines
564 B
Makefile
17 lines
564 B
Makefile
|
filterdir = $(libdir)/gst
|
||
|
|
||
|
filter_LTLIBRARIES = libwinloader.la
|
||
|
|
||
|
libwinloader_la_SOURCES = driver.c elfdll.c ext.c externals.c module.c pe_image.c pe_resource.c registry.c resource.c stubs.s vfl.c
|
||
|
|
||
|
libwinloaderincludedir = $(includedir)/gst/libs/winloader.h
|
||
|
libwinloaderinclude_HEADERS =
|
||
|
|
||
|
noinst_HEADERS = externals.h
|
||
|
|
||
|
DEFINES=-rdynamic -fPIC -g -D__WINE__ -Ddbg_printf=__vprintf -DTRACE=__vprintf
|
||
|
CFLAGS += $(DEFINES)
|
||
|
|
||
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_CFLAGS) -I$(top_srcdir) -I$(top_srcdir)/include
|
||
|
LDADD = $(GLIB_LIBS) $(GTK_LIBS) $(top_srcdir)/gst/libgst.la
|