Sara@2: # Sara@2: # There exist several targets which are by default empty and which can be Sara@2: # used for execution of your targets. These targets are usually executed Sara@2: # before and after some main targets. They are: Sara@2: # Sara@2: # .build-pre: called before 'build' target Sara@2: # .build-post: called after 'build' target Sara@2: # .clean-pre: called before 'clean' target Sara@2: # .clean-post: called after 'clean' target Sara@2: # .clobber-pre: called before 'clobber' target Sara@2: # .clobber-post: called after 'clobber' target Sara@2: # .all-pre: called before 'all' target Sara@2: # .all-post: called after 'all' target Sara@2: # .help-pre: called before 'help' target Sara@2: # .help-post: called after 'help' target Sara@2: # Sara@2: # Targets beginning with '.' are not intended to be called on their own. Sara@2: # Sara@2: # Main targets can be executed directly, and they are: Sara@2: # Sara@2: # build build a specific configuration Sara@2: # clean remove built files from a configuration Sara@2: # clobber remove all built files Sara@2: # all build all configurations Sara@2: # help print help mesage Sara@2: # Sara@2: # Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and Sara@2: # .help-impl are implemented in nbproject/makefile-impl.mk. Sara@2: # Sara@2: # Available make variables: Sara@2: # Sara@2: # CND_BASEDIR base directory for relative paths Sara@2: # CND_DISTDIR default top distribution directory (build artifacts) Sara@2: # CND_BUILDDIR default top build directory (object files, ...) Sara@2: # CONF name of current configuration Sara@2: # CND_PLATFORM_${CONF} platform name (current configuration) Sara@2: # CND_ARTIFACT_DIR_${CONF} directory of build artifact (current configuration) Sara@2: # CND_ARTIFACT_NAME_${CONF} name of build artifact (current configuration) Sara@2: # CND_ARTIFACT_PATH_${CONF} path to build artifact (current configuration) Sara@2: # CND_PACKAGE_DIR_${CONF} directory of package (current configuration) Sara@2: # CND_PACKAGE_NAME_${CONF} name of package (current configuration) Sara@2: # CND_PACKAGE_PATH_${CONF} path to package (current configuration) Sara@2: # Sara@2: # NOCDDL Sara@2: Sara@2: Sara@2: # Environment Sara@2: MKDIR=mkdir Sara@2: CP=cp Sara@2: CCADMIN=CCadmin Sara@2: Sara@2: Sara@2: # build Sara@2: build: .build-post Sara@2: Sara@2: .build-pre: Sara@2: # Add your pre 'build' code here... Sara@2: Sara@2: .build-post: .build-impl Sara@2: # Add your post 'build' code here... Sara@2: Sara@2: Sara@2: # clean Sara@2: clean: .clean-post Sara@2: Sara@2: .clean-pre: Sara@2: # Add your pre 'clean' code here... Sara@2: Sara@2: .clean-post: .clean-impl Sara@2: # Add your post 'clean' code here... Sara@2: Sara@2: Sara@2: # clobber Sara@2: clobber: .clobber-post Sara@2: Sara@2: .clobber-pre: Sara@2: # Add your pre 'clobber' code here... Sara@2: Sara@2: .clobber-post: .clobber-impl Sara@2: # Add your post 'clobber' code here... Sara@2: Sara@2: Sara@2: # all Sara@2: all: .all-post Sara@2: Sara@2: .all-pre: Sara@2: # Add your pre 'all' code here... Sara@2: Sara@2: .all-post: .all-impl Sara@2: # Add your post 'all' code here... Sara@2: Sara@2: Sara@2: # build tests Sara@2: build-tests: .build-tests-post Sara@2: Sara@2: .build-tests-pre: Sara@2: # Add your pre 'build-tests' code here... Sara@2: Sara@2: .build-tests-post: .build-tests-impl Sara@2: # Add your post 'build-tests' code here... Sara@2: Sara@2: Sara@2: # run tests Sara@2: test: .test-post Sara@2: Sara@2: .test-pre: Sara@2: # Add your pre 'test' code here... Sara@2: Sara@2: .test-post: .test-impl Sara@2: # Add your post 'test' code here... Sara@2: Sara@2: Sara@2: # help Sara@2: help: .help-post Sara@2: Sara@2: .help-pre: Sara@2: # Add your pre 'help' code here... Sara@2: Sara@2: .help-post: .help-impl Sara@2: # Add your post 'help' code here... Sara@2: Sara@2: Sara@2: Sara@2: # include project implementation makefile Sara@2: include nbproject/Makefile-impl.mk Sara@2: Sara@2: # include project make variables Sara@2: include nbproject/Makefile-variables.mk