mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 11:55:38 +00:00
574aa2ee06
* configure.in : check for panelapplet in enable_gnome and remove all the stuff for a separate panelapplet-sharp assembly. * Makefile.am : remove panelapplet dir from build. * gnome/BonoboUIVerb.cs : moved from panelapplet. * gnome/Gnome.metadata : add rules from panelapplet. * gnome/Makefile.am : add new files. * gnome/PanelApplet.custom : moved from panelapplet. * gnome/PanelAppletFactory.cs : moved from panelapplet. * gnome/glue/panelapplet.c : moved from panelapplet. * gnome/glue/Makefile.am : add new file. * gnomedb/GnomeDb.metadata : hide a newly parsed "obsolete" type. * gtk/Gtk.metadata : hide a newly parsed "obsolete" callback type. * panelapplet : kill dir. * parser/gapi2xml.pl : update callback name sanity check. * sources/gtk-sharp-sources.xml : move panelapplet parse into gnome. * */*-api.raw : regen. svn path=/trunk/gtk-sharp/; revision=38509
28 lines
560 B
Makefile
28 lines
560 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GNOME
|
|
TARGET = libgnomesharpglue-2.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgnomesharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgnomesharpglue_2_la_SOURCES = \
|
|
canvas.c \
|
|
canvasitem.c \
|
|
canvaspoints.c \
|
|
panelapplet.c \
|
|
program.c \
|
|
#
|
|
|
|
libgnomesharpglue_2_la_LIBADD = $(GNOME_LIBS)
|
|
|
|
INCLUDES = $(GNOME_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgnomesharpglue.dll: $(libgnomesharpglue_2_la_OBJECTS) libgnomesharpglue.rc libgnomesharpglue.def
|
|
./build-dll libgnomesharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|