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