mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:05:39 +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
28 lines
612 B
Makefile
28 lines
612 B
Makefile
lib_LTLIBRARIES = libglibsharpglue.la
|
|
|
|
libglibsharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libglibsharpglue_la_SOURCES = \
|
|
error.c \
|
|
list.c \
|
|
object.c \
|
|
slist.c \
|
|
time_t.c \
|
|
type.c \
|
|
value.c \
|
|
valuearray.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libglibsharpglue_la_LIBADD = $(BASE_DEPENDENCIES_LIBS)
|
|
|
|
INCLUDES = $(BASE_DEPENDENCIES_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
|