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
23 lines
498 B
Makefile
23 lines
498 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 = $(GLADE_LIBS)
|
|
|
|
INCLUDES = $(GLADE_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
|