mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 09:55:38 +00:00
112f066abf
* configure.in : deal with a csc-ism in source paths. * */Makefile.am : use the GENERATED_SOURCES var. * */glue/Makefile.am : add -no-undefined for win32 dll builds. svn path=/trunk/gtk-sharp/; revision=29367
37 lines
762 B
Makefile
37 lines
762 B
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
libgtksharpglue_la_SOURCES = \
|
|
adjustment.c \
|
|
button.c \
|
|
cellrenderer.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
combo.c \
|
|
container.c \
|
|
dialog.c \
|
|
fileselection.c \
|
|
layout.c \
|
|
nodestore.c \
|
|
object.c \
|
|
paned.c \
|
|
selectiondata.c \
|
|
style.c \
|
|
vmglueheaders.h \
|
|
widget.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgtksharpglue_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgtksharpglue_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|