20 lines
		
	
	
		
			384 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			384 B
		
	
	
	
		
			Makefile
		
	
	
	
| VCS  = vcs -full64  -sverilog +lint=TFIPC-L +v2k -debug_access+all  -q -timescale=1ns/1ps +nospecify  -l compile.log
 | |
| 
 | |
| SIMV = ./simv -l sim.log
 | |
| 
 | |
| all:comp run
 | |
| 
 | |
| comp:
 | |
| 	${VCS} -f files.f
 | |
| 
 | |
| run:
 | |
| 	${SIMV}
 | |
| 
 | |
| dbg:
 | |
| 	verdi -f files.f -top TB -nologo &
 | |
| file: 
 | |
| 	find ../ -name "*.*v" > files.f
 | |
| 
 | |
| clean:
 | |
| 	rm -rf DVE* simv* *log ucli.key verdiLog urgReport csrc novas.* *.fsdb *.dat *.daidir *.vdb *~
 |