Add cleanall target

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3089 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2007-07-06 02:24:51 +00:00
parent caf45c986f
commit afc4d4e0f4
1 changed files with 13 additions and 8 deletions

View File

@ -74,13 +74,18 @@ $(OUTPUT_DIR)\.\SecMain.obj : $(MODULE_DIR)\SecMain.c
"$(CC)" $(CC_FLAGS) $(INC) /Fo$@ $(MODULE_DIR)\SecMain.c
clean:
- @if exist $(DEBUG_DIR)\AutoGen.c del $(DEBUG_DIR)\AutoGen.c > NUL
del $(DEBUG_DIR)\AutoGen.h > NUL
del $(OUTPUT_DIR)\.\*.obj > NUL
del $(MODULE_BUILD_DIR)\makefile > NUL
del $(MODULE_BUILD_DIR)\*.idb > NUL
del $(MODULE_BUILD_DIR)\*.pdb > NUL
del $(BIN_DIR)\SecMain.exe > NUL
del $(BIN_DIR)\SecMain.pdb > NUL
# - @if exist $(DEBUG_DIR)\AutoGen.c del $(DEBUG_DIR)\AutoGen.c > NUL
# - @if exist $(DEBUG_DIR)\AutoGen.h del $(DEBUG_DIR)\AutoGen.h > NUL
# - @if exist $(OUTPUT_DIR)\.\*.obj del $(OUTPUT_DIR)\.\*.obj > NUL
# - @if exist $(MODULE_BUILD_DIR)\makefile del $(MODULE_BUILD_DIR)\makefile > NUL
# - @if exist $(MODULE_BUILD_DIR)\*.idb del $(MODULE_BUILD_DIR)\*.idb > NUL
# - @if exist $(MODULE_BUILD_DIR)\*.pdb del $(MODULE_BUILD_DIR)\*.pdb > NUL
# - @if exist $(BIN_DIR)\SecMain.exe del $(BIN_DIR)\SecMain.exe > NUL
# - @if exist $(BIN_DIR)\SecMain.pdb del $(BIN_DIR)\SecMain.pdb > NUL
- @rmdir /s /q $(OUTPUT_DIR) > NUL 2>&1
cleanall:
- @rmdir /s /q $(OUTPUT_DIR) $(DEBUG_DIR) > NUL 2>&1
- @del /f /q *.pdb *.idb > NUL 2>&1