зеркало из https://github.com/mozilla/pjs.git
71 строка
1.2 KiB
Makefile
71 строка
1.2 KiB
Makefile
|
|
DEPTH = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = thebes
|
|
|
|
REQUIRES = cairo
|
|
|
|
EXPORTS = gfxASurface.h \
|
|
gfxColor.h \
|
|
gfxContext.h \
|
|
gfxFilter.h \
|
|
gfxFont.h \
|
|
gfxImageSurface.h \
|
|
gfxMatrix.h \
|
|
gfxPattern.h \
|
|
gfxPlatform.h \
|
|
gfxPoint.h \
|
|
gfxRect.h \
|
|
gfxRegion.h \
|
|
gfxTypes.h \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
REQUIRES += glitz
|
|
EXPORTS += gfxGlitzSurface.h
|
|
endif
|
|
|
|
ifeq ($(MOZ_GFX_TOOLKIT),windows)
|
|
EXPORTS += gfxWindowsFonts.h \
|
|
gfxWindowsPlatform.h \
|
|
gfxWindowsSurface.h
|
|
|
|
ifdef MOZ_ENABLE_GLITZ
|
|
REQUIRES += glitzwgl
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(MOZ_GFX_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_GFX_TOOLKIT),beos)
|
|
EXPORTS += gfxBeOSSurface.h gfxBeOSPlatform.h
|
|
EXPORTS += gfxPangoFonts.h
|
|
EXPORTS += gfxPDFSurface.h
|
|
endif
|
|
|
|
ifneq (,$(filter $(MOZ_GFX_TOOLKIT),mac cocoa))
|
|
EXPORTS += gfxPlatformMac.h \
|
|
gfxQuartzSurface.h \
|
|
gfxAtsuiFonts.h \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_EABLE_GLITZ
|
|
REQUIRES += glitzagl
|
|
endif
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|