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
23 lines
524 B
Makefile
23 lines
524 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GLADE
|
|
TARGET = libgladesharpglue-2.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgladesharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgladesharpglue_2_la_SOURCES = \
|
|
gladexml.c
|
|
|
|
libgladesharpglue_2_la_LIBADD = $(GLADE_LIBS)
|
|
|
|
INCLUDES = $(GLADE_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgladesharpglue.dll: $(libgladesharpglue_2_la_OBJECTS) libgladesharpglue.rc libgladesharpglue.def
|
|
./build-dll libgladesharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|