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

多媒体编程

开发平台:

Visual C++

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