mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 06:05:39 +00:00
993d91fa31
* */*.cs : s/glue-2.0/glue-2 so that dllimport works on win32. * */*.custom : s/glue-2.0/glue-2 * */glue/makefile.win32 : s/glue-2.0/glue-2 * */glue/Makefile.am : s/glue-2.0/glue-2 svn path=/trunk/gtk-sharp/; revision=37324
28 lines
613 B
Makefile
28 lines
613 B
Makefile
lib_LTLIBRARIES = libglibsharpglue-2.la
|
|
|
|
libglibsharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libglibsharpglue_2_la_SOURCES = \
|
|
error.c \
|
|
list.c \
|
|
object.c \
|
|
slist.c \
|
|
type.c \
|
|
unichar.c \
|
|
value.c \
|
|
valuearray.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libglibsharpglue_2_la_LIBADD = $(GLIB_LIBS)
|
|
|
|
INCLUDES = $(GLIB_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 = makefile.win32 win32dll.c
|