########################################################################## # # ListTest1 Program # # (c) 2001-2005 Gilles Boccon-Gibod & Julien Boeuf # ########################################################################## all: listtest1 ########################################################################## # includes ########################################################################## include $(BUILD_ROOT)/Makefiles/Crypto.exp include $(BUILD_ROOT)/Makefiles/Core.exp include $(BUILD_ROOT)/Makefiles/System.exp ########################################################################## # targets ########################################################################## TARGET_SOURCES = ListTest1.cpp ########################################################################## # make path ########################################################################## VPATH += $(SOURCE_ROOT)/Tests/List1 ########################################################################## # includes ########################################################################## include $(BUILD_ROOT)/Makefiles/Rules.mak ########################################################################## # rules ########################################################################## listtest1: $(TARGET_OBJECTS) $(TARGET_LIBRARY_FILES) $(LINK) $(TARGET_OBJECTS) -o $@