Local.mak
上传用户:xjjlds
上传日期:2015-12-05
资源大小:22823k
文件大小:2k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. #######################################################################
  2. #
  3. #   AP4 Makefile for x86-unknown-linux
  4. #
  5. #######################################################################
  6. all: Apps
  7. #######################################################################
  8. #    configuration variables
  9. #######################################################################
  10. TARGET      = x86-unknown-linux
  11. BUILD_ROOT  = ../../..
  12. SOURCE_ROOT = ../../../../Source
  13. #######################################################################
  14. #    tools
  15. #######################################################################
  16. # how to make dependencies
  17. AUTODEP_CPP = gcc -MM
  18. # how to archive of object files
  19. ARCHIVE = ld -r
  20. # how to make a library
  21. MAKELIB = ar rs
  22. # how to optimize the layout of a library
  23. RANLIB = ranlib
  24. # how to strip executables
  25. STRIP = strip
  26. # how to compile source code
  27. COMPILE_CPP  = g++
  28. # how to link object files
  29. LINK_CPP = g++ -L.
  30. # optimization flags
  31. OPTIMIZE_CPP = -O6
  32. # debug flags
  33. DEBUG_CPP = -g
  34. # profiling flags
  35. PROFILE_CPP = -pg
  36. # compilation flags
  37. DEFINES_CPP = -D_REENTRANT -DAP4_PLATFORM_BYTE_ORDER=AP4_PLATFORM_LITTLE_ENDIAN
  38. # warning flags
  39. WARNINGS_CPP = -Wall -Werror -Wshadow -Wpointer-arith -Wcast-qual 
  40. # include directories
  41. INCLUDES_CPP =
  42. # libraries
  43. LIBRARIES_CPP = 
  44. #######################################################################
  45. #    module selection
  46. #######################################################################
  47. FILE_BYTE_STREAM_IMPLEMENTATION = Ap4StdCFileByteStream
  48. #######################################################################
  49. #    includes
  50. #######################################################################
  51. include $(BUILD_ROOT)/Makefiles/TopLevel.mak