mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 19:35:42 +00:00
09c61ee026
* autogen.sh : error out with bootstrap help message. * bootstrap : replaces autogen.sh for the 2.5.x release line. * bootstrap-2.4 : replaces autogen.sh for the 1.9.x release line. * configure.in.in : renamed from configure.in and added substitution for version, dependencies, CFLAGS and CSFLAGS. * README : bootstrap docs * */*-api.raw : moved to api-2.6.raw for bootstrapping. * */*-api-2.4.raw : added 2.4 api files for bootstrapping. * */glue/Makefile.am : add GTK_SHARP_VERSION_CFLAGS. * pango/Attribute.cs : add a #if GTK_SHARP_2_6 block. * pango/glue/attribute.c : add a couple #ifdef GTK_SHARP_2_6 blocks. * sample/GtkDemo/* : make the 2.6 demos conditional. svn path=/trunk/gtk-sharp/; revision=44047
38 lines
820 B
Makefile
38 lines
820 B
Makefile
lib_LTLIBRARIES = libgtksharpglue-2.la
|
|
|
|
libgtksharpglue_2_la_SOURCES = \
|
|
adjustment.c \
|
|
button.c \
|
|
cellrenderer.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
combo.c \
|
|
container.c \
|
|
dialog.c \
|
|
fileselection.c \
|
|
inputdialog.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_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgtksharpglue_2_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_2_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|