forked from AuroraMiddleware/gtk
0973b993f2
2003-01-05 Tor Lillqvist <tml@iki.fi> * gtk-zip.sh.in: Use correct DLL and import library names, with GTK_API_VERSION in name, not GTK_MAJOR_VERSION.GTK_MINOR_VERSION. (DEVZIP): Add gdk-pixbuf-query-loaders.exe. * configure.in: Improve check for dimm.h. * configure.in: Set SOEXT to 'so' on Unix, 'dll' on Win32. Used in gdk-pixbuf/Makefile.am. * gdk-pixbuf/makefile.mingw.in * gdk-pixbuf/pixops/makefile.mingw.in * gdk/makefile.mingw.in * gdk/win32/makefile.mingw.in * gtk/makefile.mingw.in: Remove. Not maintained anyway. * gdk-pixbuf/Makefile.am * gdk-pixbuf/pixops/Makefile.am * gdk/Makefile.am * gdk/win32/Makefile.am * gtk/Makefile.am * configure.in: Remove makefile.mingw{,.in} from here, too. * README.win32: Updates. Don't mention the now removed makefile.mingw files. * gdk/gdk.def * gtk/gtk.def: Add a couple of missing entries. * gdk/gdkkeynames.c: Include <string.h> for strcmp() and memcpy(). * gdk/win32/gdkevents-win32.c: Move dimm.h header clash workaround earlier. * gdk/win32/rc/Makefile.am: Add hack to help build/win32/lt-compile-resource decide which kind of libtool object file to produce.
93 lines
1.8 KiB
Makefile
93 lines
1.8 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
libgdkincludedir = $(includedir)/gtk-2.0/gdk
|
|
|
|
INCLUDES = @STRIP_BEGIN@ \
|
|
-DG_LOG_DOMAIN=\"Gdk\" \
|
|
-DINSIDE_GDK_WIN32 \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/gdk \
|
|
-I$(top_builddir)/gdk \
|
|
@GTK_DEBUG_FLAGS@ \
|
|
@GDK_DEP_CFLAGS@ \
|
|
@GDK_WIN32_EXTRA_CFLAGS@\
|
|
-DGDK_COMPILATION \
|
|
@STRIP_END@
|
|
|
|
LDADDS = @STRIP_BEGIN@ \
|
|
@GDK_DEP_LIBS@ \
|
|
@STRIP_END@
|
|
|
|
if HAVE_WINTAB
|
|
libwntab32x_a = .libs/libwntab32x.a
|
|
|
|
.libs/libwntab32x.a: @WINTAB_LIB@
|
|
cp $< $@
|
|
endif
|
|
|
|
if HAVE_IE55
|
|
libie55uuid_a = .libs/libie55uuid.a
|
|
|
|
.libs/libie55uuid.a: @IE55_UUID_LIB@
|
|
cp $< $@
|
|
endif
|
|
|
|
noinst_DATA = $(libwntab32x_a) $(libie55uuid_a)
|
|
|
|
noinst_LTLIBRARIES = libgdk-win32.la
|
|
|
|
SUBDIRS=rc
|
|
|
|
EXTRA_DIST = \
|
|
bdfcursor.c \
|
|
makefile.msc \
|
|
libie55uuid.la \
|
|
libwntab32x.la
|
|
|
|
libgdk_win32_la_SOURCES = \
|
|
xcursors.h \
|
|
gdkcolor-win32.c \
|
|
gdkcursor-win32.c \
|
|
gdkdisplay-win32.c \
|
|
gdkdnd-win32.c \
|
|
gdkdrawable-win32.c \
|
|
gdkdrawable-win32.h \
|
|
gdkevents-win32.c \
|
|
gdkfont-win32.c \
|
|
gdkgc-win32.c \
|
|
gdkgeometry-win32.c \
|
|
gdkglobals-win32.c \
|
|
gdkim-win32.c \
|
|
gdkimage-win32.c \
|
|
gdkinput.c \
|
|
gdkinput-win32.c \
|
|
gdkinput-win32.h \
|
|
gdkkeys-win32.c \
|
|
gdkmain-win32.c \
|
|
gdkpango-win32.c \
|
|
gdkpixmap-win32.c \
|
|
gdkpixmap-win32.h \
|
|
gdkprivate-win32.h \
|
|
gdkproperty-win32.c \
|
|
gdkscreen-win32.c \
|
|
gdkselection-win32.c \
|
|
gdkvisual-win32.c \
|
|
gdkwin32.h \
|
|
gdkwin32id.c \
|
|
gdkwindow-win32.c \
|
|
gdkwindow-win32.h
|
|
|
|
libgdkinclude_HEADERS = \
|
|
gdkwin32.h
|
|
|
|
libgdk_win32_la_LIBADD = rc/gdk-win32res.lo
|
|
|
|
###########################################
|
|
# Hack to get gdkenumtypes.h built first
|
|
###########################################
|
|
|
|
$(libgdk_win32_la_OBJECTS): $(top_srcdir)/gdk/gdkenumtypes.h
|
|
|
|
$(top_srcdir)/gdk/gdkenumtypes.h:
|
|
@cd $(top_builddir)/gdk && make $(AM_MAKEFLAGS) gdkenumtypes.h
|