Makefile 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. # NOCDDL
  31. # Environment
  32. MKDIR=mkdir
  33. CP=cp
  34. CCADMIN=CCadmin
  35. RANLIB=ranlib
  36. # build
  37. build: .build-post
  38. .build-pre:
  39. # Add your pre 'build' code here...
  40. .build-post: .build-impl
  41. # Add your post 'build' code here...
  42. # clean
  43. clean: .clean-post
  44. .clean-pre:
  45. # Add your pre 'clean' code here...
  46. .clean-post: .clean-impl
  47. # Add your post 'clean' code here...
  48. # clobber
  49. clobber: .clobber-post
  50. .clobber-pre:
  51. # Add your pre 'clobber' code here...
  52. .clobber-post: .clobber-impl
  53. # Add your post 'clobber' code here...
  54. # all
  55. all: .all-post
  56. .all-pre:
  57. # Add your pre 'all' code here...
  58. .all-post: .all-impl
  59. # Add your post 'all' code here...
  60. # help
  61. help: .help-post
  62. .help-pre:
  63. # Add your pre 'help' code here...
  64. .help-post: .help-impl
  65. # Add your post 'help' code here...
  66. # include project implementation makefile
  67. include nbproject/Makefile-impl.mk