5c87903756
* makefile: when doing distclean, attempt distclean on all the C# subdirs too * gconf/Makefile.in: added distclean target to rm the Makefiles in the subdirs of gconf/ * glue/Makefile.am: build libgtksharpglue as an unversioned module to avoid so -> so.0 -> so.0.0 symlink mess * */Makefile.in: call mkinstalldirs before installing any files so that subdirs can be installed seperately or in any sequence (eg binding dirs before native dirs) svn path=/trunk/gtk-sharp/; revision=9828
71 lines
1.1 KiB
Makefile
71 lines
1.1 KiB
Makefile
lib_LTLIBRARIES = libgtksharpglue.la
|
|
|
|
BASESOURCES = \
|
|
adjustment.c \
|
|
value.c \
|
|
fileselection.c \
|
|
combo.c \
|
|
dialog.c \
|
|
colorseldialog.c \
|
|
error.c \
|
|
event.c \
|
|
slist.c \
|
|
object.c \
|
|
paned.c \
|
|
style.c \
|
|
type.c \
|
|
widget.c \
|
|
list.c \
|
|
clipboard.c \
|
|
#
|
|
|
|
GNOMESOURCES = \
|
|
canvasitem.c \
|
|
canvaspoints.c \
|
|
canvas-proxy.c \
|
|
canvas-proxy.h \
|
|
canvas-proxy-marshal.c \
|
|
canvas-proxy-marshal.h \
|
|
program.c \
|
|
#
|
|
|
|
libgtksharpglue_la_LDFLAGS = -module -avoid-version
|
|
|
|
# fixme: Makefile.am = THE SUCK
|
|
if ENABLE_GNOME
|
|
|
|
if ENABLE_GLADE
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES) \
|
|
$(GNOMESOURCES) \
|
|
gladexml.c \
|
|
#
|
|
else
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES) \
|
|
$(GNOMESOURCES) \
|
|
#
|
|
endif
|
|
|
|
else
|
|
|
|
if ENABLE_GLADE
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES) \
|
|
gladexml.c \
|
|
#
|
|
else
|
|
libgtksharpglue_la_SOURCES = \
|
|
$(BASESOURCES)
|
|
endif
|
|
|
|
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
|
|
|