mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 19:05:28 +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
24 lines
522 B
Makefile
24 lines
522 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GLADE
|
|
TARGET = libgladesharpglue.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgladesharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgladesharpglue_la_SOURCES = \
|
|
gladexml.c
|
|
|
|
libgladesharpglue_la_LIBADD = $(BASE_DEPENDENCIES_LIBS)
|
|
|
|
INCLUDES = $(BASE_DEPENDENCIES_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgladesharpglue.dll: $(libgladesharpglue_la_OBJECTS) libgladesharpglue.rc libgladesharpglue.def
|
|
./build-dll libgladesharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|