mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 05:35:40 +00:00
621b39b531
* kill the makefile.win32 build system. it has been unmaintained for quite some time, replaced by the auto* build in cygwin. svn path=/trunk/gtk-sharp/; revision=103308
29 lines
609 B
Makefile
29 lines
609 B
Makefile
lib_LTLIBRARIES = libglibsharpglue-2.la
|
|
|
|
libglibsharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libglibsharpglue_2_la_SOURCES = \
|
|
closure.c \
|
|
error.c \
|
|
list.c \
|
|
object.c \
|
|
slist.c \
|
|
type.c \
|
|
unichar.c \
|
|
value.c \
|
|
valuearray.c \
|
|
thread.c
|
|
|
|
# Adding a new glue file?
|
|
|
|
libglibsharpglue_2_la_LIBADD = $(GLIB_LIBS)
|
|
|
|
INCLUDES = $(GLIB_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_2_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = win32dll.c
|