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