ab2f05fa77
* configure.in : remove atk/glue/Makefile * atk/Makefile.am : comment out subdirs for now * atk/makefile.win32 : don't build glue * */glue/Makefile.am : remove generated.c from sources * */glue/makefile.win32 : remove generated.c from sources * generator/ObjectGen.cs : disable vm glue generation for now. svn path=/trunk/gtk-sharp/; revision=24850
34 lines
741 B
Makefile
34 lines
741 B
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
libgtksharpglue_la_SOURCES = \
|
|
adjustment.c \
|
|
button.c \
|
|
clipboard.c \
|
|
colorseldialog.c \
|
|
combo.c \
|
|
dialog.c \
|
|
fileselection.c \
|
|
layout.c \
|
|
nodestore.c \
|
|
object.c \
|
|
paned.c \
|
|
selectiondata.c \
|
|
style.c \
|
|
vmglueheaders.h \
|
|
widget.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libgtksharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
libgtksharpglue_la_LIBADD = $(BASE_DEPENDENCIES_LIBS)
|
|
|
|
INCLUDES = $(BASE_DEPENDENCIES_CFLAGS) -I$(top_srcdir)
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|