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
24 lines
560 B
Makefile
24 lines
560 B
Makefile
lib_LTLIBRARIES = libgdksharpglue.la
|
|
|
|
libgdksharpglue_la_SOURCES = \
|
|
dragcontext.c \
|
|
event.c \
|
|
selection.c \
|
|
vmglueheaders.h \
|
|
windowmanager.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgdksharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgdksharpglue_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgdksharpglue.dll: $(libgdksharpglue_la_OBJECTS) libgdksharpglue.rc libgdksharpglue.def
|
|
./build-dll libgdksharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|