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