Library of reusable VHDL components
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
283 B

  1. SIM_SRC = ../sim
  2. VHD_STD = 02
  3. .PHONY: sim
  4. sim: queuet
  5. queuet : QueueT.vhd $(SIM_SRC)/QueueP.vhd
  6. ghdl -a --std=$(VHD_STD) $(SIM_SRC)/QueueP.vhd QueueT.vhd
  7. ghdl -e --std=$(VHD_STD) QueueT
  8. ghdl -r --std=$(VHD_STD) QueueT
  9. .PHONY: clean
  10. clean:
  11. rm -f *.o
  12. rm -f *.cf
  13. rm -f queuet