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
25 lines
599 B
Makefile
25 lines
599 B
Makefile
lib_LTLIBRARIES = libgdksharpglue-2.la
|
|
|
|
libgdksharpglue_2_la_SOURCES = \
|
|
dragcontext.c \
|
|
device.c \
|
|
event.c \
|
|
selection.c \
|
|
vmglueheaders.h \
|
|
windowmanager.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgdksharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgdksharpglue_2_la_LIBADD = $(GTK_LIBS)
|
|
|
|
INCLUDES = $(GTK_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgdksharpglue.dll: $(libgdksharpglue_2_la_OBJECTS) libgdksharpglue.rc libgdksharpglue.def
|
|
./build-dll libgdksharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|