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