Makefile 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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 = libsupport
  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 = STATIC
  16. # If you plan to use localization, specify the application's MIME signature.
  17. APP_MIME_SIG =
  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. libs/libsupport/Base64.cpp \
  30. libs/libsupport/SHA1.cpp \
  31. libs/libsupport/Singleton.cpp
  32. # Specify the resource definition files to use. Full or relative paths can be
  33. # used.
  34. RDEFS =
  35. # Specify the resource files to use. Full or relative paths can be used.
  36. # Both RDEFS and RSRCS can be utilized in the same Makefile.
  37. RSRCS =
  38. # End Pe/Eddie support.
  39. # @<-src@
  40. #%}
  41. # Specify libraries to link against.
  42. # There are two acceptable forms of library specifications:
  43. # - if your library follows the naming pattern of libXXX.so or libXXX.a,
  44. # you can simply specify XXX for the library. (e.g. the entry for
  45. # "libtracker.so" would be "tracker")
  46. #
  47. # - for GCC-independent linking of standard C++ libraries, you can use
  48. # $(STDCPPLIBS) instead of the raw "stdc++[.r4] [supc++]" library names.
  49. #
  50. # - if your library does not follow the standard library naming scheme,
  51. # you need to specify the path to the library and it's name.
  52. # (e.g. for mylib.a, specify "mylib.a" or "path/mylib.a")
  53. LIBS = be shared $(STDCPPLIBS)
  54. # Specify additional paths to directories following the standard libXXX.so
  55. # or libXXX.a naming scheme. You can specify full paths or paths relative
  56. # to the Makefile. The paths included are not parsed recursively, so
  57. # include all of the paths where libraries must be found. Directories where
  58. # source files were specified are automatically included.
  59. LIBPATHS =
  60. # Additional paths to look for system headers. These use the form
  61. # "#include <header>". Directories that contain the files in SRCS are
  62. # NOT auto-included here.
  63. SYSTEM_INCLUDE_PATHS =
  64. # Additional paths paths to look for local headers. These use the form
  65. # #include "header". Directories that contain the files in SRCS are
  66. # automatically included.
  67. LOCAL_INCLUDE_PATHS =
  68. # Specify the level of optimization that you want. Specify either NONE (O0),
  69. # SOME (O1), FULL (O3), or leave blank (for the default optimization level).
  70. OPTIMIZE :=
  71. # Specify the codes for languages you are going to support in this
  72. # application. The default "en" one must be provided too. "make catkeys"
  73. # will recreate only the "locales/en.catkeys" file. Use it as a template
  74. # for creating catkeys for other languages. All localization files must be
  75. # placed in the "locales" subdirectory.
  76. LOCALES =
  77. # Specify all the preprocessor symbols to be defined. The symbols will not
  78. # have their values set automatically; you must supply the value (if any) to
  79. # use. For example, setting DEFINES to "DEBUG=1" will cause the compiler
  80. # option "-DDEBUG=1" to be used. Setting DEFINES to "DEBUG" would pass
  81. # "-DDEBUG" on the compiler's command line.
  82. DEFINES =
  83. # Specify the warning level. Either NONE (suppress all warnings),
  84. # ALL (enable all warnings), or leave blank (enable default warnings).
  85. WARNINGS =
  86. # With image symbols, stack crawls in the debugger are meaningful.
  87. # If set to "TRUE", symbols will be created.
  88. SYMBOLS :=
  89. # Includes debug information, which allows the binary to be debugged easily.
  90. # If set to "TRUE", debug info will be created.
  91. DEBUGGER :=
  92. # Specify any additional compiler flags to be used.
  93. COMPILER_FLAGS =
  94. # Specify any additional linker flags to be used.
  95. LINKER_FLAGS =
  96. # Specify the version of this binary. Example:
  97. # -app 3 4 0 d 0 -short 340 -long "340 "`echo -n -e '\302\251'`"1999 GNU GPL"
  98. # This may also be specified in a resource.
  99. APP_VERSION :=
  100. # (Only used when "TYPE" is "DRIVER"). Specify the desired driver install
  101. # location in the /dev hierarchy. Example:
  102. # DRIVER_PATH = video/usb
  103. # will instruct the "driverinstall" rule to place a symlink to your driver's
  104. # binary in ~/add-ons/kernel/drivers/dev/video/usb, so that your driver will
  105. # appear at /dev/video/usb when loaded. The default is "misc".
  106. DRIVER_PATH =
  107. ## Include the Makefile-Engine
  108. DEVEL_DIRECTORY := \
  109. $(shell findpaths -r "makefile_engine" B_FIND_PATH_DEVELOP_DIRECTORY)
  110. include $(DEVEL_DIRECTORY)/etc/makefile-engine
  111. include Makefile.common