init target should not be used in customize makefile. Fix it.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5115 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2
2008-04-23 08:57:31 +00:00
parent b67754b99e
commit b9a31177c8
3 changed files with 2 additions and 12 deletions

View File

@@ -167,12 +167,8 @@ LIBS =
COMMON_DEPS =
all: init $(TARGET_FILES) loader
all: $(TARGET_FILES) loader
init:
if not exist $(OUTPUT_DIR) mkdir $(OUTPUT_DIR)
if not exist $(DEBUG_DIR) mkdir $(DEBUG_DIR)
#=============
$(OUTPUT_DIR)\bootsect.obj:$(MODULE_DIR)\bootsect.asm
$(ASM) /c /omf /Fo"$(OUTPUT_DIR)\bootsect.obj" /FR"$(OUTPUT_DIR)\bootsect.txt" "$(MODULE_DIR)\bootsect.asm"