112f066abf
* configure.in : deal with a csc-ism in source paths. * */Makefile.am : use the GENERATED_SOURCES var. * */glue/Makefile.am : add -no-undefined for win32 dll builds. svn path=/trunk/gtk-sharp/; revision=29367
20 lines
526 B
Makefile
20 lines
526 B
Makefile
lib_LTLIBRARIES = libpangosharpglue.la
|
|
|
|
libpangosharpglue_la_SOURCES = \
|
|
layoutline.c
|
|
|
|
# Adding a new glue file?
|
|
# Please remember to update makefile.win32
|
|
|
|
libpangosharpglue_la_LDFLAGS = -module -avoid-version -no-undefined
|
|
|
|
libpangosharpglue_la_LIBADD = $(PANGO_LIBS)
|
|
|
|
INCLUDES = $(PANGO_CFLAGS) -I$(top_srcdir)
|
|
|
|
libpangosharpglue.dll: $(libpangosharpglue_la_OBJECTS) libpangosharpglue.rc libpangosharpglue.def
|
|
./build-dll libpangosharpglue $(VERSION)
|
|
|
|
CLEANFILES = lib*.a lib*.dll
|
|
|
|
EXTRA_DIST = makefile.win32 win32dll.c
|