1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-14 21:40:03 +00:00

Make distclean delete build artifacts for all versions (#1909)

This commit is contained in:
cadmic 2024-03-04 09:26:04 -08:00 committed by GitHub
parent 63a95da5db
commit b9d1fe50cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -350,8 +350,10 @@ assetclean:
$(RM) -r $(BUILD_DIR)/assets
$(RM) -r .extracted-assets.json
distclean: clean assetclean
$(RM) -r $(BASEROM_SEGMENTS_DIR)
distclean: assetclean
$(RM) -r baseroms/*/segments
$(RM) -r extracted/
$(RM) -r build/
$(MAKE) -C tools distclean
venv: