Makefile 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. ## Haiku Generic Makefile v2.6 ##
  2. ## Fill in this file to specify the project being created, and the referenced
  3. ## Makefile-Engine will do all of the hard work for you. This handles any
  4. ## architecture of Haiku.
  5. ##
  6. ## For more information, see:
  7. ## file:///system/develop/documentation/makefile-engine.html
  8. # The name of the binary.
  9. NAME = chat-o-matic/irc
  10. # The type of binary, must be one of:
  11. # APP: Application
  12. # SHARED: Shared library or add-on
  13. # STATIC: Static library archive
  14. # DRIVER: Kernel driver
  15. TYPE = SHARED
  16. # If you plan to use localization, specify the application's MIME signature.
  17. APP_MIME_SIG = application/x-vnd.chat-o-matic.irc
  18. # The following lines tell Pe and Eddie where the SRCS, RDEFS, and RSRCS are
  19. # so that Pe and Eddie can fill them in for you.
  20. #%{
  21. # @src->@
  22. # Specify the source files to use. Full paths or paths relative to the
  23. # Makefile can be included. All files, regardless of directory, will have
  24. # their object files created in the common object directory. Note that this
  25. # means this Makefile will not work correctly if two source files with the
  26. # same name (source.c or source.cpp) are included from different directories.
  27. # Also note that spaces in folder names do not work well with this Makefile.
  28. SRCS = \
  29. protocols/irc/IrcMain.cpp \
  30. protocols/irc/IrcProtocol.cpp \
  31. # Specify the resource definition files to use. Full or relative paths can be
  32. # used.
  33. RDEFS = \
  34. data/icons/protocols/IRC.rdef \
  35. protocols/irc/irc.rdef \
  36. # Specify the resource files to use. Full or relative paths can be used.
  37. # Both RDEFS and RSRCS can be utilized in the same Makefile.
  38. RSRCS =
  39. # End Pe/Eddie support.
  40. # @<-src@
  41. #%}
  42. # Specify libraries to link against.
  43. # There are two acceptable forms of library specifications:
  44. # - if your library follows the naming pattern of libXXX.so or libXXX.a,
  45. # you can simply specify XXX for the library. (e.g. the entry for
  46. # "libtracker.so" would be "tracker")
  47. #
  48. # - for GCC-independent linking of standard C++ libraries, you can use
  49. # $(STDCPPLIBS) instead of the raw "stdc++[.r4] [supc++]" library names.
  50. #
  51. # - if your library does not follow the standard library naming scheme,
  52. # you need to specify the path to the library and it's name.
  53. # (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
  54. LIBS = be bnetapi localestub network support $(STDCPPLIBS)
  55. # Specify additional paths to directories following the standard libXXX.so
  56. # or libXXX.a naming scheme. You can specify full paths or paths relative
  57. # to the Makefile. The paths included are not parsed recursively, so
  58. # include all of the paths where libraries must be found. Directories where
  59. # source files were specified are automatically included.
  60. LIBPATHS =
  61. # Additional paths to look for system headers. These use the form
  62. # "#include <header>". Directories that contain the files in SRCS are
  63. # NOT auto-included here.
  64. SYSTEM_INCLUDE_PATHS = application/ libs/
  65. # Additional paths paths to look for local headers. These use the form
  66. # #include "header". Directories that contain the files in SRCS are
  67. # automatically included.
  68. LOCAL_INCLUDE_PATHS =
  69. # Specify the level of optimization that you want. Specify either NONE (O0),
  70. # SOME (O1), FULL (O3), or leave blank (for the default optimization level).
  71. OPTIMIZE :=
  72. # Specify the codes for languages you are going to support in this
  73. # application. The default "en" one must be provided too. "make catkeys"
  74. # will recreate only the "locales/en.catkeys" file. Use it as a template
  75. # for creating catkeys for other languages. All localization files must be
  76. # placed in the "locales" subdirectory.
  77. LOCALES =
  78. # Specify all the preprocessor symbols to be defined. The symbols will not
  79. # have their values set automatically; you must supply the value (if any) to
  80. # use. For example, setting DEFINES to "DEBUG=1" will cause the compiler
  81. # option "-DDEBUG=1" to be used. Setting DEFINES to "DEBUG" would pass
  82. # "-DDEBUG" on the compiler's command line.
  83. DEFINES =
  84. # Specify the warning level. Either NONE (suppress all warnings),
  85. # ALL (enable all warnings), or leave blank (enable default warnings).
  86. WARNINGS =
  87. # With image symbols, stack crawls in the debugger are meaningful.
  88. # If set to "TRUE", symbols will be created.
  89. SYMBOLS :=
  90. # Includes debug information, which allows the binary to be debugged easily.
  91. # If set to "TRUE", debug info will be created.
  92. DEBUGGER :=
  93. # Specify any additional compiler flags to be used.
  94. COMPILER_FLAGS =
  95. # Specify any additional linker flags to be used.
  96. LINKER_FLAGS =
  97. # Specify the version of this binary. Example:
  98. # -app 3 4 0 d 0 -short 340 -long "340 "`echo -n -e '\302\251'`"1999 GNU GPL"
  99. # This may also be specified in a resource.
  100. APP_VERSION :=
  101. # (Only used when "TYPE" is "DRIVER"). Specify the desired driver install
  102. # location in the /dev hierarchy. Example:
  103. # DRIVER_PATH = video/usb
  104. # will instruct the "driverinstall" rule to place a symlink to your driver's
  105. # binary in ~/add-ons/kernel/drivers/dev/video/usb, so that your driver will
  106. # appear at /dev/video/usb when loaded. The default is "misc".
  107. DRIVER_PATH =
  108. ## Include the Makefile-Engine
  109. DEVEL_DIRECTORY := /boot/system/develop/
  110. include $(DEVEL_DIRECTORY)/etc/makefile-engine
  111. include Makefile.common
  112. include protocols/Makefile.common
  113. CATKEYS_DIR = locales/irc