mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-25 07:25:33 +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
34 lines
721 B
Makefile
34 lines
721 B
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
libgtksharpglue_la_SOURCES = \
|
|
adjustment.c \
|
|
button.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
combo.c \
|
|
dialog.c \
|
|
fileselection.c \
|
|
layout.c \
|
|
nodestore.c \
|
|
object.c \
|
|
paned.c \
|
|
selectiondata.c \
|
|
style.c \
|
|
widget.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgtksharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgtksharpglue_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
|