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