########################################################################## # # Mp4Encrypt Program # # (c) 2001-2002 Gilles Boccon-Gibod # ########################################################################## all: mp4encrypt ########################################################################## # includes ########################################################################## include $(BUILD_ROOT)/Makefiles/Crypto.exp include $(BUILD_ROOT)/Makefiles/Core.exp include $(BUILD_ROOT)/Makefiles/System.exp ########################################################################## # targets ########################################################################## TARGET_SOURCES = Mp4Encrypt.cpp ########################################################################## # make path ########################################################################## VPATH += $(SOURCE_ROOT)/Apps/Mp4Encrypt ########################################################################## # includes ########################################################################## include $(BUILD_ROOT)/Makefiles/Rules.mak ########################################################################## # rules ########################################################################## mp4encrypt: $(TARGET_OBJECTS) $(TARGET_LIBRARY_FILES) $(LINK) $(TARGET_OBJECTS) $(LIBRARIES_CPP) -o $@