mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-24 20:05:38 +00:00
e83c55a242
* */Makefile.am : automakify the build * */Makefile.in : kill * *.custom : remove System.Drawing dependencies * *.cs : remove System.Drawing dependencies * *-api.xml : mv to *-api.raw * glue/* : mv to lib specific gluelibs for glib, gdk, gtk, and glade. * gtk/gtk-symbols : alias GtkType to GType * sources/gtk-sharp-sources.xml : create .raw files. They are now transformed to .xml files by the metadata compilation step. svn path=/trunk/gtk-sharp/; revision=23967
30 lines
619 B
Makefile
30 lines
619 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GNOME
|
|
TARGET = libgnomesharpglue.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgnomesharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgnomesharpglue_la_SOURCES = \
|
|
canvasitem.c \
|
|
canvaspoints.c \
|
|
canvas-proxy.c \
|
|
canvas-proxy.h \
|
|
canvas-proxy-marshal.c \
|
|
canvas-proxy-marshal.h \
|
|
program.c \
|
|
#
|
|
|
|
libgnomesharpglue_la_LIBADD = $(BASE_DEPENDENCIES_LIBS)
|
|
|
|
INCLUDES = $(BASE_DEPENDENCIES_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgnomesharpglue.dll: $(libgnomesharpglue_la_OBJECTS) libgnomesharpglue.rc libgnomesharpglue.def
|
|
./build-dll libgnomesharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|