mirror of https://github.com/VLSIDA/OpenRAM.git
Add Makefile targets for clean, uninstall, and wipe
This commit is contained in:
parent
af67b738af
commit
066e558b20
18
Makefile
18
Makefile
|
|
@ -202,23 +202,23 @@ mount:
|
||||||
vlsida/openram-ubuntu:latest
|
vlsida/openram-ubuntu:latest
|
||||||
.PHONY: mount
|
.PHONY: mount
|
||||||
|
|
||||||
|
clean:
|
||||||
testclean:
|
|
||||||
rm -rf $(TEST_STAMPS)
|
rm -rf $(TEST_STAMPS)
|
||||||
rm -rf $(TEST_DIRS)
|
rm -rf $(TEST_DIRS)
|
||||||
rm *.zip
|
rm -f *.zip
|
||||||
.PHONE: testclean
|
.PHONE: clean
|
||||||
|
|
||||||
clean:
|
uninstall: clean
|
||||||
rm -rf $(SKY130_PDK)
|
|
||||||
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: clean
|
.PHONY: uninstall
|
||||||
|
|
||||||
uninstall: clean
|
# wipe the entire repos
|
||||||
|
wipe: uninstall
|
||||||
|
rm -rf $(SKY130_PDK)
|
||||||
rm -rf $(SRAM_LIB_DIR)
|
rm -rf $(SRAM_LIB_DIR)
|
||||||
rm -rf $(OPEN_PDKS_DIR)
|
rm -rf $(OPEN_PDKS_DIR)
|
||||||
.PHONY: uninstall
|
.PHONY: wipe
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue