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
30 lines
635 B
Makefile
30 lines
635 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_GNOME
|
|
TARGET = libgnomesharpglue-2.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libgnomesharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libgnomesharpglue_2_la_SOURCES = \
|
|
canvas.c \
|
|
canvasitem.c \
|
|
canvaspoints.c \
|
|
canvas-proxy.c \
|
|
canvas-proxy.h \
|
|
canvas-proxy-marshal.c \
|
|
canvas-proxy-marshal.h \
|
|
program.c \
|
|
#
|
|
|
|
libgnomesharpglue_2_la_LIBADD = $(GNOME_LIBS)
|
|
|
|
INCLUDES = $(GNOME_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgnomesharpglue.dll: $(libgnomesharpglue_2_la_OBJECTS) libgnomesharpglue.rc libgnomesharpglue.def
|
|
./build-dll libgnomesharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|