Smart entity rule

This commit is contained in:
Yannick Reiß 2024-03-03 18:30:13 +01:00
parent cc4b9c7deb
commit 275853931b
No known key found for this signature in database
GPG Key ID: 5A3AF456F0A0338C
1 changed files with 5 additions and 5 deletions

View File

@ -11,8 +11,8 @@ all: $(PARTS)
$(CHDL) -r $(FLAGS) $@ --wave=$@.ghw --stop-time=$(STOP)
clean:
rm *.o
rm *.cf
rm *.ghw
.PHONY: all clean $(PARTS)
find . -name '*.o' -exec rm -r {} \;
find . -name '*.cf' -exec rm -r {} \;
find . -name '*.ghw' -exec rm -r {} \;
find . -name '*.entity' -exec rm -r {} \;
find . -name $(PARTS) -exec rm -r {} \;