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

多媒体编程

开发平台:

Visual C++

  1. ##########################################################################
  2. #
  3. #    Aac2Mp4 Program
  4. #
  5. #    (c) 2001-2002 Gilles Boccon-Gibod
  6. #
  7. ##########################################################################
  8. ##########################################################################
  9. # includes
  10. ##########################################################################
  11. include $(BUILD_ROOT)/Makefiles/Crypto.exp
  12. include $(BUILD_ROOT)/Makefiles/Core.exp
  13. include $(BUILD_ROOT)/Makefiles/System.exp
  14. include $(BUILD_ROOT)/Makefiles/Codecs.exp
  15. ##########################################################################
  16. # targets
  17. ##########################################################################
  18. TARGET_SOURCES = Aac2Mp4.cpp
  19. ##########################################################################
  20. # make path
  21. ##########################################################################
  22. VPATH += $(SOURCE_ROOT)/Apps/Aac2Mp4
  23. ##########################################################################
  24. # variables
  25. ##########################################################################
  26. LINK = $(LINK_CPP_OPTIONS) $(OPTIMIZE_CPP) $(DEBUG_CPP) $(PROFILE_CPP)
  27. ##########################################################################
  28. # rules
  29. ##########################################################################
  30. aac2mp4: $(TARGET_SOURCES:.cpp=.o) $(TARGET_OBJECTS) $(TARGET_LIBRARY_FILES)
  31. $(LINK) $^ -o $@ 
  32. ##########################################################################
  33. # includes
  34. ##########################################################################
  35. include $(BUILD_ROOT)/Makefiles/Rules.mak