Blame msvc/Makefile.vc

Packit 0af36a
# NMake Makefile for building libpsl Windows
Packit 0af36a
Packit 0af36a
# The items below this line should not be changed, unless one is maintaining
Packit 0af36a
# the NMake Makefiles.  Customizations can be done in the following NMake Makefile
Packit 0af36a
# portions (please see comments in the these files to see what can be customized):
Packit 0af36a
#
Packit 0af36a
# detectenv-msvc.mak
Packit 0af36a
# config-msvc.mak
Packit 0af36a
Packit 0af36a
!include detectenv-msvc.mak
Packit 0af36a
Packit 0af36a
# Include the Makefile portion that enables features based on user input
Packit 0af36a
!include config-msvc.mak
Packit 0af36a
Packit 0af36a
!if "$(VALID_CFGSET)" == "TRUE"
Packit 0af36a
Packit 0af36a
# Include the Makefile portion to convert the source and header lists
Packit 0af36a
# into the lists we need for compilation and introspection
Packit 0af36a
!include create-lists-msvc.mak
Packit 0af36a
Packit 0af36a
all: $(PSL_LIB) $(PSL_UTILS) build-info
Packit 0af36a
Packit 0af36a
tests: $(PSL_TEST_DATA) $(PSL_TESTS) build-info
Packit 0af36a
Packit 0af36a
# Include the build rules for sources, DLLs and executables
Packit 0af36a
!include build-rules-msvc.mak
Packit 0af36a
Packit 0af36a
# Include the rules for build directory creation and code generation
Packit 0af36a
!include generate-msvc.mak
Packit 0af36a
Packit 0af36a
# Include the Makefile portion that enables installing the build results
Packit 0af36a
!include install-msvc.mak
Packit 0af36a
!else
Packit 0af36a
!error No CFG (or invalid CFG) value specified.  Valid values are release or debug.
Packit 0af36a
!endif