diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-23 08:57:31 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-04-23 08:57:31 +0000 |
commit | b9a31177c8c8bd8178a17c04c41724f42fa54b9a (patch) | |
tree | 24bd29351d50b37b95a4c3a8c2dd6d56cea55070 /DuetPkg/BootSector/Makefile | |
parent | b67754b99eab8adf1c916c74489589be2a781292 (diff) | |
download | edk2-platforms-b9a31177c8c8bd8178a17c04c41724f42fa54b9a.tar.xz |
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
Diffstat (limited to 'DuetPkg/BootSector/Makefile')
-rw-r--r-- | DuetPkg/BootSector/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/DuetPkg/BootSector/Makefile b/DuetPkg/BootSector/Makefile index fc24f37677..64177245ce 100644 --- a/DuetPkg/BootSector/Makefile +++ b/DuetPkg/BootSector/Makefile @@ -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"
|