synth/wave/makefile

18 lines
222 B
Makefile
Raw Normal View History

2021-03-01 06:11:17 +00:00
all: sim
sim: test.ghw
sim_sources = pdmout_test.vhdl
sources = pdmout.vhdl
test.ghw: work-obj93.cf
ghdl -r pdmout_test --wave=$@
work-obj93.cf: $(sim_sources) $(sources)
ghdl -a $^
PHONY: sim
.PRECIOUS: test.ghw