mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 07:15:34 +00:00
14e3877005
* configure.in : remove BASE_DEPENDENCIES LIBS and CFLAGS and expose more specific versions for glue building. * */glue/Makefile.am : use more specific versions of LIBS and CFLAGS to reduce the ldd footprint. svn path=/trunk/gtk-sharp/; revision=26438
29 lines
600 B
Makefile
29 lines
600 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 \
|
|
unichar.c \
|
|
value.c \
|
|
valuearray.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libglibsharpglue_la_LIBADD = $(GLIB_LIBS)
|
|
|
|
INCLUDES = $(GLIB_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
|