annotate CppApplication_1/Makefile @ 3:b3ad79b3197c

This is a single thread application, it didn't work yet and I am working on fixing the problem,
author Sara
date Mon, 06 Jan 2014 10:08:37 -0800
parents
children
rev   line source
Sara@1 1 #
Sara@1 2 # There exist several targets which are by default empty and which can be
Sara@1 3 # used for execution of your targets. These targets are usually executed
Sara@1 4 # before and after some main targets. They are:
Sara@1 5 #
Sara@1 6 # .build-pre: called before 'build' target
Sara@1 7 # .build-post: called after 'build' target
Sara@1 8 # .clean-pre: called before 'clean' target
Sara@1 9 # .clean-post: called after 'clean' target
Sara@1 10 # .clobber-pre: called before 'clobber' target
Sara@1 11 # .clobber-post: called after 'clobber' target
Sara@1 12 # .all-pre: called before 'all' target
Sara@1 13 # .all-post: called after 'all' target
Sara@1 14 # .help-pre: called before 'help' target
Sara@1 15 # .help-post: called after 'help' target
Sara@1 16 #
Sara@1 17 # Targets beginning with '.' are not intended to be called on their own.
Sara@1 18 #
Sara@1 19 # Main targets can be executed directly, and they are:
Sara@1 20 #
Sara@1 21 # build build a specific configuration
Sara@1 22 # clean remove built files from a configuration
Sara@1 23 # clobber remove all built files
Sara@1 24 # all build all configurations
Sara@1 25 # help print help mesage
Sara@1 26 #
Sara@1 27 # Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
Sara@1 28 # .help-impl are implemented in nbproject/makefile-impl.mk.
Sara@1 29 #
Sara@1 30 # Available make variables:
Sara@1 31 #
Sara@1 32 # CND_BASEDIR base directory for relative paths
Sara@1 33 # CND_DISTDIR default top distribution directory (build artifacts)
Sara@1 34 # CND_BUILDDIR default top build directory (object files, ...)
Sara@1 35 # CONF name of current configuration
Sara@1 36 # CND_PLATFORM_${CONF} platform name (current configuration)
Sara@1 37 # CND_ARTIFACT_DIR_${CONF} directory of build artifact (current configuration)
Sara@1 38 # CND_ARTIFACT_NAME_${CONF} name of build artifact (current configuration)
Sara@1 39 # CND_ARTIFACT_PATH_${CONF} path to build artifact (current configuration)
Sara@1 40 # CND_PACKAGE_DIR_${CONF} directory of package (current configuration)
Sara@1 41 # CND_PACKAGE_NAME_${CONF} name of package (current configuration)
Sara@1 42 # CND_PACKAGE_PATH_${CONF} path to package (current configuration)
Sara@1 43 #
Sara@1 44 # NOCDDL
Sara@1 45
Sara@1 46
Sara@1 47 # Environment
Sara@1 48 MKDIR=mkdir
Sara@1 49 CP=cp
Sara@1 50 CCADMIN=CCadmin
Sara@1 51
Sara@1 52
Sara@1 53 # build
Sara@1 54 build: .build-post
Sara@1 55
Sara@1 56 .build-pre:
Sara@1 57 # Add your pre 'build' code here...
Sara@1 58
Sara@1 59 .build-post: .build-impl
Sara@1 60 # Add your post 'build' code here...
Sara@1 61
Sara@1 62
Sara@1 63 # clean
Sara@1 64 clean: .clean-post
Sara@1 65
Sara@1 66 .clean-pre:
Sara@1 67 # Add your pre 'clean' code here...
Sara@1 68
Sara@1 69 .clean-post: .clean-impl
Sara@1 70 # Add your post 'clean' code here...
Sara@1 71
Sara@1 72
Sara@1 73 # clobber
Sara@1 74 clobber: .clobber-post
Sara@1 75
Sara@1 76 .clobber-pre:
Sara@1 77 # Add your pre 'clobber' code here...
Sara@1 78
Sara@1 79 .clobber-post: .clobber-impl
Sara@1 80 # Add your post 'clobber' code here...
Sara@1 81
Sara@1 82
Sara@1 83 # all
Sara@1 84 all: .all-post
Sara@1 85
Sara@1 86 .all-pre:
Sara@1 87 # Add your pre 'all' code here...
Sara@1 88
Sara@1 89 .all-post: .all-impl
Sara@1 90 # Add your post 'all' code here...
Sara@1 91
Sara@1 92
Sara@1 93 # build tests
Sara@1 94 build-tests: .build-tests-post
Sara@1 95
Sara@1 96 .build-tests-pre:
Sara@1 97 # Add your pre 'build-tests' code here...
Sara@1 98
Sara@1 99 .build-tests-post: .build-tests-impl
Sara@1 100 # Add your post 'build-tests' code here...
Sara@1 101
Sara@1 102
Sara@1 103 # run tests
Sara@1 104 test: .test-post
Sara@1 105
Sara@1 106 .test-pre:
Sara@1 107 # Add your pre 'test' code here...
Sara@1 108
Sara@1 109 .test-post: .test-impl
Sara@1 110 # Add your post 'test' code here...
Sara@1 111
Sara@1 112
Sara@1 113 # help
Sara@1 114 help: .help-post
Sara@1 115
Sara@1 116 .help-pre:
Sara@1 117 # Add your pre 'help' code here...
Sara@1 118
Sara@1 119 .help-post: .help-impl
Sara@1 120 # Add your post 'help' code here...
Sara@1 121
Sara@1 122
Sara@1 123
Sara@1 124 # include project implementation makefile
Sara@1 125 include nbproject/Makefile-impl.mk
Sara@1 126
Sara@1 127 # include project make variables
Sara@1 128 include nbproject/Makefile-variables.mk