Blame win32/Makefile.vc

Packit 874993
# NMake Makefile for building HarfBuzz as a DLL on Windows
Packit 874993
Packit 874993
# The items below this line should not be changed, unless one is maintaining
Packit 874993
# the NMake Makefiles.  Customizations can be done in the following NMake Makefile
Packit 874993
# portions (please see comments in the these files to see what can be customized):
Packit 874993
#
Packit 874993
# detectenv-msvc.mak
Packit 874993
# config-msvc.mak
Packit 874993
Packit 874993
!include detectenv-msvc.mak
Packit 874993
Packit 874993
# Include the Makefile portions with the source listings
Packit 874993
!include ..\src\Makefile.sources
Packit 874993
!include ..\src\hb-ucdn\Makefile.sources
Packit 874993
!include ..\util\Makefile.sources
Packit 874993
Packit 874993
# We need to include the sources in ..\src\hb-ucdn indirectly
Packit 874993
!if [call create-lists.bat header hb_ucdn_srcs.mak hb_ucdn_SRCS]
Packit 874993
!endif
Packit 874993
Packit 874993
!if [for %c in ($(LIBHB_UCDN_sources)) do @call create-lists.bat file hb_ucdn_srcs.mak hb-ucdn\%c]
Packit 874993
!endif
Packit 874993
Packit 874993
!if [call create-lists.bat footer hb_ucdn_srcs.mak]
Packit 874993
!endif
Packit 874993
Packit 874993
!include hb_ucdn_srcs.mak
Packit 874993
Packit 874993
!if [del /f /q hb_ucdn_srcs.mak]
Packit 874993
!endif
Packit 874993
Packit 874993
# Include the Makefile portion that enables features based on user input
Packit 874993
!include config-msvc.mak
Packit 874993
Packit 874993
!if "$(VALID_CFGSET)" == "TRUE"
Packit 874993
Packit 874993
# Include the Makefile portion to convert the source and header lists
Packit 874993
# into the lists we need for compilation and introspection
Packit 874993
!include create-lists-msvc.mak
Packit 874993
Packit 874993
all: $(HB_LIBS) $(HB_UTILS) $(EXTRA_TARGETS) all-build-info
Packit 874993
Packit 874993
tests: all $(HB_TESTS)
Packit 874993
Packit 874993
# Include the build rules for sources, DLLs and executables
Packit 874993
!include build-rules-msvc.mak
Packit 874993
Packit 874993
# Include the rules for build directory creation and code generation
Packit 874993
!include generate-msvc.mak
Packit 874993
Packit 874993
# Generate the introspection files
Packit 874993
Packit 874993
!if "$(INTROSPECTION)" == "1"
Packit 874993
# Include the rules for building the introspection files
Packit 874993
!include introspection-msvc.mak
Packit 874993
!include hb-introspection-msvc.mak
Packit 874993
!endif
Packit 874993
Packit 874993
!include install.mak
Packit 874993
Packit 874993
!else
Packit 874993
all: help
Packit 874993
	@echo You need to specify a valid configuration, via
Packit 874993
	@echo CFG=release or CFG=debug
Packit 874993
!endif
Packit 874993
Packit 874993
!include info-msvc.mak