bd5af2ca78
* makefile.win32 : remove 1.0 csc, default to 1.1. * gtk/TreeEnumerator.cs : remove C# 2.0 usage. * gtk/glue/makefile.win32 : remove duplicated cellrenderer.o. * vte/glue/Makefile.am : use VTE_DEPENDENCIES_CFLAGS. * */makefile.win32 : add glue args to generation target. svn path=/trunk/gtk-sharp/; revision=44580
23 lines
518 B
Makefile
23 lines
518 B
Makefile
lib_LTLIBRARIES = $(TARGET)
|
|
|
|
if ENABLE_VTE
|
|
TARGET = libvtesharpglue-2.la
|
|
else
|
|
TARGET =
|
|
endif
|
|
|
|
libvtesharpglue_2_la_SOURCES = # empty
|
|
|
|
nodist_libvtesharpglue_2_la_SOURCES = generated.c
|
|
|
|
libvtesharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libvtesharpglue_2_la_LIBADD = $(VTE_LIBS)
|
|
|
|
INCLUDES = $(VTE_DEPENDENCIES_CFLAGS) -I$(top_srcdir)
|
|
|
|
libvtesharpglue.dll: $(libvtesharpglue_2_la_OBJECTS) libvtesharpglue.rc libvtesharpglue.def
|
|
./build-dll libvtesharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|