mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
8446f92790
Original commit message from CVS: More build changes
17 lines
551 B
Makefile
17 lines
551 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libwinloader.la
|
|
|
|
# compiler manages to screw something up here...
|
|
CFLAGS += -O2
|
|
|
|
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 afl.c
|
|
|
|
noinst_HEADERS = externals.h wineacm.h
|
|
|
|
DEFINES=-rdynamic -fPIC -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
|