c5f678926c
* glue/Makefile.am: Added dialog.c and colorseldialog.c * glue/dialog.c: * gtk/Dialog.custom: C# glue for getting more fields from a GtkDialog. * glue/colorseldialog.c: * gtk/ColorSelectionDialog.custom: C# glue for getting more fields from a ColorSelectionDialog. svn path=/trunk/gtk-sharp/; revision=5699
30 lines
532 B
Makefile
30 lines
532 B
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
BASESOURCES = \
|
|
value.c \
|
|
textiter.c \
|
|
fileselection.c \
|
|
dialog.c \
|
|
colorseldialog.c \
|
|
error.c \
|
|
event.c \
|
|
slist.c
|
|
|
|
if ENABLE_GNOME
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES) \
|
|
program.c \
|
|
#
|
|
else
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES)
|
|
endif
|
|
|
|
INCLUDES = @BASE_DEPENDENCIES_CFLAGS@ -I$(top_srcdir)
|
|
|
|
|
|
libgtksharpglue.dll: $(libgtksharpglue_la_OBJECTS) libgtksharpglue.rc libgtksharpglue.def
|
|
./build-dll libgtksharpglue 0.1
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|