2005-04-06 05:54:26 +04:00
|
|
|
|
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = thebes
|
|
|
|
|
2005-10-06 08:02:10 +04:00
|
|
|
REQUIRES = cairo
|
|
|
|
|
2005-04-06 05:54:26 +04:00
|
|
|
EXPORTS = gfxASurface.h \
|
|
|
|
gfxColor.h \
|
|
|
|
gfxContext.h \
|
|
|
|
gfxFilter.h \
|
2005-10-08 09:50:16 +04:00
|
|
|
gfxFont.h \
|
2005-04-06 05:54:26 +04:00
|
|
|
gfxImageSurface.h \
|
|
|
|
gfxMatrix.h \
|
|
|
|
gfxPattern.h \
|
2005-11-29 23:12:29 +03:00
|
|
|
gfxPlatform.h \
|
2005-04-06 05:54:26 +04:00
|
|
|
gfxPoint.h \
|
2005-04-06 11:36:31 +04:00
|
|
|
gfxRect.h \
|
2005-04-06 05:54:26 +04:00
|
|
|
gfxRegion.h \
|
2005-04-08 09:47:49 +04:00
|
|
|
gfxTypes.h \
|
2005-04-06 05:54:26 +04:00
|
|
|
$(NULL)
|
|
|
|
|
2005-10-06 08:02:10 +04:00
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
|
|
REQUIRES += glitz
|
|
|
|
EXPORTS += gfxGlitzSurface.h
|
|
|
|
endif
|
|
|
|
|
2005-04-06 05:54:26 +04:00
|
|
|
ifeq ($(MOZ_GFX_TOOLKIT),windows)
|
2005-10-06 08:02:10 +04:00
|
|
|
EXPORTS += gfxWindowsFonts.h \
|
2006-02-01 05:35:38 +03:00
|
|
|
gfxWindowsPlatform.h \
|
2005-10-06 08:02:10 +04:00
|
|
|
gfxWindowsSurface.h
|
|
|
|
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
|
|
REQUIRES += glitzwgl
|
|
|
|
endif
|
2005-04-06 05:54:26 +04:00
|
|
|
endif
|
|
|
|
|
2005-06-30 08:58:27 +04:00
|
|
|
ifeq ($(MOZ_GFX_TOOLKIT),gtk2)
|
2006-02-23 04:01:29 +03:00
|
|
|
EXPORTS += gfxXlibSurface.h gfxPlatformGtk.h gfxXlibNativeRenderer.h
|
2006-01-09 20:58:17 +03:00
|
|
|
EXPORTS += gfxPangoFonts.h
|
2006-02-14 01:37:13 +03:00
|
|
|
EXPORTS += gfxPDFSurface.h gfxPSSurface.h
|
2005-06-30 08:58:27 +04:00
|
|
|
|
2005-08-20 09:36:47 +04:00
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
2005-10-06 08:02:10 +04:00
|
|
|
REQUIRES += glitzglx
|
|
|
|
endif
|
2005-08-20 09:36:47 +04:00
|
|
|
endif
|
|
|
|
|
2006-04-05 01:22:35 +04:00
|
|
|
ifeq ($(MOZ_GFX_TOOLKIT),beos)
|
|
|
|
EXPORTS += gfxBeOSSurface.h gfxBeOSPlatform.h
|
|
|
|
EXPORTS += gfxPangoFonts.h
|
|
|
|
EXPORTS += gfxPDFSurface.h
|
|
|
|
endif
|
|
|
|
|
2006-02-22 04:44:31 +03:00
|
|
|
ifneq (,$(filter $(MOZ_GFX_TOOLKIT),mac cocoa))
|
|
|
|
EXPORTS += gfxPlatformMac.h \
|
|
|
|
gfxQuartzSurface.h \
|
|
|
|
gfxAtsuiFonts.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MOZ_EABLE_GLITZ
|
|
|
|
REQUIRES += glitzagl
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2005-04-06 05:54:26 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|