Remove .s files generated from .grc files.

This commit is contained in:
Kugel Fuhr
2025-07-16 12:31:18 +02:00
parent 3f3dc3d145
commit e82656d8ca

View File

@@ -730,6 +730,7 @@ mostlyclean:
@$(DEL) *.lbl *.map *.o 2>$(NULLDEV)
# we cant use .s since we have asm files in the directory that we want to keep
@$(DEL) ${patsubst %.c,%.s,$(wildcard *.c)} 2>$(NULLDEV)
@$(DEL) ${patsubst %.grc,%.s,$(wildcard *.grc)} 2>$(NULLDEV)
clean: mostlyclean
@$(DEL) $(EXELIST_$(SYS)) $(DISK_$(SYS)) 2>$(NULLDEV)