You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.3 KiB

4 years ago
  1. #
  2. # There exist several targets which are by default empty and which can be
  3. # used for execution of your targets. These targets are usually executed
  4. # before and after some main targets. They are:
  5. #
  6. # .build-pre: called before 'build' target
  7. # .build-post: called after 'build' target
  8. # .clean-pre: called before 'clean' target
  9. # .clean-post: called after 'clean' target
  10. # .clobber-pre: called before 'clobber' target
  11. # .clobber-post: called after 'clobber' target
  12. # .all-pre: called before 'all' target
  13. # .all-post: called after 'all' target
  14. # .help-pre: called before 'help' target
  15. # .help-post: called after 'help' target
  16. #
  17. # Targets beginning with '.' are not intended to be called on their own.
  18. #
  19. # Main targets can be executed directly, and they are:
  20. #
  21. # build build a specific configuration
  22. # clean remove built files from a configuration
  23. # clobber remove all built files
  24. # all build all configurations
  25. # help print help mesage
  26. #
  27. # Targets .build-impl, .clean-impl, .clobber-impl, .all-impl, and
  28. # .help-impl are implemented in nbproject/makefile-impl.mk.
  29. #
  30. # Available make variables:
  31. #
  32. # CND_BASEDIR base directory for relative paths
  33. # CND_DISTDIR default top distribution directory (build artifacts)
  34. # CND_BUILDDIR default top build directory (object files, ...)
  35. # CONF name of current configuration
  36. # CND_ARTIFACT_DIR_${CONF} directory of build artifact (current configuration)
  37. # CND_ARTIFACT_NAME_${CONF} name of build artifact (current configuration)
  38. # CND_ARTIFACT_PATH_${CONF} path to build artifact (current configuration)
  39. # CND_PACKAGE_DIR_${CONF} directory of package (current configuration)
  40. # CND_PACKAGE_NAME_${CONF} name of package (current configuration)
  41. # CND_PACKAGE_PATH_${CONF} path to package (current configuration)
  42. #
  43. # NOCDDL
  44. # Environment
  45. MKDIR=mkdir
  46. CP=cp
  47. CCADMIN=CCadmin
  48. RANLIB=ranlib
  49. # build
  50. build: .build-post
  51. .build-pre:
  52. # Add your pre 'build' code here...
  53. .build-post: .build-impl
  54. # Add your post 'build' code here...
  55. # clean
  56. clean: .clean-post
  57. .clean-pre:
  58. # Add your pre 'clean' code here...
  59. # WARNING: the IDE does not call this target since it takes a long time to
  60. # simply run make. Instead, the IDE removes the configuration directories
  61. # under build and dist directly without calling make.
  62. # This target is left here so people can do a clean when running a clean
  63. # outside the IDE.
  64. .clean-post: .clean-impl
  65. # Add your post 'clean' code here...
  66. # clobber
  67. clobber: .clobber-post
  68. .clobber-pre:
  69. # Add your pre 'clobber' code here...
  70. .clobber-post: .clobber-impl
  71. # Add your post 'clobber' code here...
  72. # all
  73. all: .all-post
  74. .all-pre:
  75. # Add your pre 'all' code here...
  76. .all-post: .all-impl
  77. # Add your post 'all' code here...
  78. # help
  79. help: .help-post
  80. .help-pre:
  81. # Add your pre 'help' code here...
  82. .help-post: .help-impl
  83. # Add your post 'help' code here...
  84. # include project implementation makefile
  85. include nbproject/Makefile-impl.mk
  86. # include project make variables
  87. include nbproject/Makefile-variables.mk