mirror of https://github.com/VLSIDA/OpenRAM.git
Warn for wiping repos
This commit is contained in:
parent
066e558b20
commit
e31bab26ae
24
Makefile
24
Makefile
|
|
@ -203,22 +203,24 @@ mount:
|
||||||
.PHONY: mount
|
.PHONY: mount
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -rf $(TEST_STAMPS)
|
@rm -rf $(TEST_STAMPS)
|
||||||
rm -rf $(TEST_DIRS)
|
@rm -rf $(TEST_DIRS)
|
||||||
rm -f *.zip
|
@rm -f *.zip
|
||||||
.PHONE: clean
|
.PHONE: clean
|
||||||
|
|
||||||
uninstall: clean
|
uninstall: clean
|
||||||
rm -f $(INSTALL_BASE)/tech/.magicrc
|
@rm -f $(INSTALL_BASE)/tech/.magicrc
|
||||||
rm -f $(INSTALL_BASE)/mag_lib/.magicrc
|
@rm -f $(INSTALL_BASE)/mag_lib/.magicrc
|
||||||
rm -f $(INSTALL_BASE)/lef_lib/.magicrc
|
@rm -f $(INSTALL_BASE)/lef_lib/.magicrc
|
||||||
rm -f $(INSTALL_BASE)/maglef_lib/.magicrc
|
@rm -f $(INSTALL_BASE)/maglef_lib/.magicrc
|
||||||
rm -rf $(INSTALL_DIRS)
|
@rm -rf $(INSTALL_DIRS)
|
||||||
.PHONY: uninstall
|
.PHONY: uninstall
|
||||||
|
|
||||||
# wipe the entire repos
|
# wipe the entire repos
|
||||||
wipe: uninstall
|
wipe: uninstall
|
||||||
rm -rf $(SKY130_PDK)
|
@echo "Wiping PDK repos in 5 sec... (ctrl-c to quit)"
|
||||||
rm -rf $(SRAM_LIB_DIR)
|
@sleep 5
|
||||||
rm -rf $(OPEN_PDKS_DIR)
|
@rm -rf $(SKY130_PDK)
|
||||||
|
@rm -rf $(SRAM_LIB_DIR)
|
||||||
|
@rm -rf $(OPEN_PDKS_DIR)
|
||||||
.PHONY: wipe
|
.PHONY: wipe
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue