########################################################################## # # Mp4Info Program # # (c) 2002-2008 Axiomatic Systems, LLC # ########################################################################## all: mp4info ########################################################################## # includes ########################################################################## include $(BUILD_ROOT)/Makefiles/Lib.exp ########################################################################## # targets ########################################################################## TARGET_SOURCES = Mp4Info.cpp ########################################################################## # make path ########################################################################## VPATH += $(SOURCE_ROOT)/Apps/Mp4Info ########################################################################## # includes ########################################################################## include $(BUILD_ROOT)/Makefiles/Rules.mak ########################################################################## # rules ########################################################################## mp4info: $(TARGET_OBJECTS) $(TARGET_LIBRARY_FILES) $(LINK) $(TARGET_OBJECTS) -o $@ $(LINK_LIBRARIES)