annotate CppApplication_1 (copy)/Makefile @ 5:a6cc4a802db6

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