07df433712
* pango/Makefile.am : add file. * pango/Units.cs : new class to wrap PANGO_SCALE and PANGO_PIXELS. * pango/glue/units.c : accessors for the macros. * pango/glue/Makefile.am : build it. * pango/glue/makefile.win32 : build it on win. [Fixes #74837] svn path=/trunk/gtk-sharp/; revision=44410
22 lines
596 B
Makefile
22 lines
596 B
Makefile
lib_LTLIBRARIES = libpangosharpglue-2.la
|
|
|
|
libpangosharpglue_2_la_SOURCES = \
|
|
attribute.c \
|
|
layoutline.c \
|
|
units.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libpangosharpglue_2_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libpangosharpglue_2_la_LIBADD = $(PANGO_LIBS)
|
|
|
|
INCLUDES = $(PANGO_CFLAGS) $(GTK_SHARP_VERSION_CFLAGS) -I$(top_srcdir)
|
|
|
|
libpangosharpglue.dll: $(libpangosharpglue_2_la_OBJECTS) libpangosharpglue.rc libpangosharpglue.def
|
|
./build-dll libpangosharpglue-2 $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|