mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
86 lines
1.5 KiB
Makefile
86 lines
1.5 KiB
Makefile
|
|
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = thebes
|
|
|
|
REQUIRES = cairo
|
|
|
|
EXPORTS = gfxASurface.h \
|
|
gfxAlphaRecovery.h \
|
|
gfxColor.h \
|
|
gfxContext.h \
|
|
gfxFont.h \
|
|
gfxImageSurface.h \
|
|
gfxMatrix.h \
|
|
gfxPath.h \
|
|
gfxPattern.h \
|
|
gfxPlatform.h \
|
|
gfxPoint.h \
|
|
gfxRect.h \
|
|
gfxSkipChars.h \
|
|
gfxTypes.h \
|
|
gfxTextRunCache.h \
|
|
$(NULL)
|
|
|
|
EXPORTS += gfxFontTest.h
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
REQUIRES += glitz
|
|
EXPORTS += gfxGlitzSurface.h
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
EXPORTS += gfxWindowsFonts.h \
|
|
gfxWindowsPlatform.h \
|
|
gfxWindowsSurface.h \
|
|
gfxWindowsNativeDrawing.h \
|
|
$(NULL)
|
|
EXPORTS += gfxPDFSurface.h
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
REQUIRES += glitzwgl
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
EXPORTS += gfxXlibSurface.h gfxPlatformGtk.h gfxXlibNativeRenderer.h
|
|
EXPORTS += gfxPangoFonts.h
|
|
EXPORTS += gfxPDFSurface.h gfxPSSurface.h
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
REQUIRES += glitzglx
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
EXPORTS += gfxOS2Surface.h \
|
|
gfxOS2Platform.h \
|
|
gfxOS2Fonts.h \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),beos)
|
|
EXPORTS += gfxBeOSSurface.h gfxBeOSPlatform.h
|
|
EXPORTS += gfxPangoFonts.h
|
|
EXPORTS += gfxPDFSurface.h
|
|
endif
|
|
|
|
ifneq (,$(filter $(MOZ_WIDGET_TOOLKIT),mac cocoa))
|
|
EXPORTS += gfxPlatformMac.h \
|
|
gfxQuartzSurface.h \
|
|
gfxQuartzPDFSurface.h \
|
|
gfxAtsuiFonts.h \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
REQUIRES += glitzagl
|
|
endif
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|