Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 7th, 2012  |  syntax: None  |  size: 0.39 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. GHDL=ghdl
  2. GHDLFLAGS=--mb-comments
  3. WORK=work
  4.  
  5. TEST_BENCH = test_bench \
  6.              $(END_LIST)
  7.  
  8. all: $(TEST_BENCH)
  9.  
  10. clean:
  11.         rm -f *.o *.cf $(TEST_BENCH)
  12.  
  13. test_bench: mt19937ar.o test_bench.o
  14.          $(GHDL) -e $(GHDLFLAGS) $@
  15.         -$(GHDL) -r $(GHDLRUNFLAGS) $@
  16.  
  17. test_bench.o: ./test_bench.vhd
  18.         $(GHDL) -a $(GHDLFLAGS) --work=work $<
  19.  
  20. mt19937ar.o:  ./mt19937ar.vhd
  21.         $(GHDL) -a $(GHDLFLAGS) --work=$(WORK) $<