forked from AuroraMiddleware/gtk
2f6e6f2eed
2007-07-09 Matthias Clasen <mclasen@redhat.com> * modules/printbackends/*/Makefile.am: Fix build problems on Cygwin. (#448604) svn path=/trunk/; revision=18412
31 lines
691 B
Makefile
31 lines
691 B
Makefile
if PLATFORM_WIN32
|
|
no_undefined = -no-undefined
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gtk \
|
|
-I$(top_builddir)/gtk \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
-DGTK_PRINT_BACKEND_ENABLE_UNSUPPORTED \
|
|
$(GTK_DEP_CFLAGS) \
|
|
$(GTK_DEBUG_FLAGS)
|
|
|
|
LDADDS = \
|
|
$(GTK_DEP_LIBS) \
|
|
$(top_builddir)/gtk/$(gtktargetlib)
|
|
|
|
backenddir = $(libdir)/gtk-2.0/$(GTK_BINARY_VERSION)/printbackends
|
|
|
|
backend_LTLIBRARIES = libprintbackend-lpr.la
|
|
|
|
libprintbackend_lpr_la_SOURCES = \
|
|
gtkprintbackendlpr.c
|
|
|
|
noinst_HEADERS = \
|
|
gtkprintbackendlpr.h
|
|
|
|
libprintbackend_lpr_la_LDFLAGS = -avoid-version -module $(no_undefined)
|
|
libprintbackend_lpr_la_LIBADD = $(LDADDS)
|