]> git.proxmox.com Git - mirror_edk2.git/blobdiff - Tools/Source/TianoTools/EfiRom/Makefile
Get rid of old makefiles.
[mirror_edk2.git] / Tools / Source / TianoTools / EfiRom / Makefile
diff --git a/Tools/Source/TianoTools/EfiRom/Makefile b/Tools/Source/TianoTools/EfiRom/Makefile
deleted file mode 100644 (file)
index 5ba3607..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-#/*++\r
-#  \r
-#  Copyright (c) 2001 Intel Corporation.  All rights reserved.\r
-#\r
-#  This software and associated documentation (if any) is furnished under \r
-#  a license and may only be used or copied in accordance with the terms \r
-#  of the license.  Except as permitted by such license, no part of this \r
-#  software or documentation may be reproduced, stored in a retrieval \r
-#  system, or transmitted in any form or by any means without the express \r
-#  written consent of Intel Corporation.\r
-#  \r
-#  Module Name:\r
-#  \r
-#    makefile\r
-#    \r
-#  Abstract:\r
-#  \r
-#    makefile for building the EfiRom utility.\r
-#  \r
-#  Revision History\r
-#  \r
-#--*/\r
-\r
-#\r
-# Make sure environmental variable EFI_SOURCE is set\r
-#\r
-!IFNDEF EFI_SOURCE\r
-!ERROR EFI_SOURCE environmental variable not set \r
-!ENDIF\r
-\r
-#\r
-# Define the toolchain which is used to set build options and toolchain paths\r
-#\r
-TOOLCHAIN = TOOLCHAIN_MSVC\r
-\r
-!INCLUDE PlatformTools.env\r
-\r
-#\r
-# Target specific information\r
-#\r
-\r
-TARGET_NAME         = EfiRom\r
-TARGET_SRC_DIR      = $(TIANO_TOOLS_SOURCE)\$(TARGET_NAME)\r
-TARGET_EXE          = $(TIANO_TOOLS_OUTPUT)\EfiRom.exe\r
-\r
-#\r
-# Build targets\r
-#\r
-\r
-all: $(TARGET_EXE)\r
-\r
-OBJECTS   = $(TIANO_TOOLS_OUTPUT)\EfiRom.obj \\r
-            $(TIANO_TOOLS_OUTPUT)\EfiCompress.obj\r
-            \r
-#\r
-# Build the EXE by compiling the source files, then linking the resultant\r
-# object files together.\r
-#\r
-\r
-$(TIANO_TOOLS_OUTPUT)\EfiRom.obj : $(TARGET_SRC_DIR)\EfiRom.c\r
-  $(CC) $(C_FLAGS) $(TARGET_SRC_DIR)\EfiRom.c /Fo$@\r
-\r
-$(TIANO_TOOLS_OUTPUT)\EfiCompress.obj : $(EDK_TOOLS_SOURCE)\Common\EfiCompress.c\r
-  $(CC) $(C_FLAGS) $(EDK_TOOLS_SOURCE)\Common\EfiCompress.c /Fo$@\r
-  \r
-$(TARGET_EXE): $(OBJECTS) $(TARGET_EXE_LIBS)\r
-  $(LINK) $(MSVS_LINK_LIBPATHS) $(L_FLAGS) $(LIBS) /out:$(TARGET_EXE) $(OBJECTS)\r
-\r
-clean:\r
-  @if exist $(TIANO_TOOLS_OUTPUT)\$(TARGET_NAME).* del $(TIANO_TOOLS_OUTPUT)\$(TARGET_NAME).* > NUL\r