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