First part of alu implementation

This commit is contained in:
2024-03-03 11:12:13 +01:00
parent 600b148559
commit cc4b9c7deb
3 changed files with 126 additions and 17 deletions

View File

@@ -6,13 +6,13 @@ PARTS = alu
all: $(PARTS)
%: %.vhd tb_%.vhd
$(CHDL) -a $(FLAGS)
$(CHDL) -e $(FLAGS)
$(CHDL) -r $(FLAGS) --wave=$@.ghw --stop-time=$(STOP)
$(CHDL) -a $(FLAGS) $^
$(CHDL) -e $(FLAGS) $@
$(CHDL) -r $(FLAGS) $@ --wave=$@.ghw --stop-time=$(STOP)
clean:
find . -name '*.o' -exec rm -r {}\;
find . -name '*.cf' -exec rm -r {}\;
find . -name '*.ghw' -exec rm -r {}\;
rm *.o
rm *.cf
rm *.ghw
.PHONY: all clean
.PHONY: all clean $(PARTS)