mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 05:19:11 +00:00 
			
		
		
		
	Hopefully matches enough that any `make docs` call will work from the yosys being built, while still being overridable locally.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			724 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			724 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROGRAM_PREFIX :=
 | 
						|
 | 
						|
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys
 | 
						|
 | 
						|
all: test0.log test1.log test2.log
 | 
						|
 | 
						|
CXXFLAGS=$(shell $(YOSYS)-config --cxxflags)
 | 
						|
DATDIR=$(shell $(YOSYS)-config --datdir)
 | 
						|
 | 
						|
my_cmd.so: my_cmd.cc
 | 
						|
	$(YOSYS)-config --exec --cxx $(subst $(DATDIR),../../share,$(CXXFLAGS)) --ldflags -o my_cmd.so -shared my_cmd.cc --ldlibs
 | 
						|
 | 
						|
test0.log: my_cmd.so
 | 
						|
	$(YOSYS) -Ql test0.log_new -m ./my_cmd.so -p 'my_cmd foo bar' absval_ref.v
 | 
						|
	mv test0.log_new test0.log
 | 
						|
 | 
						|
test1.log: my_cmd.so
 | 
						|
	$(YOSYS) -Ql test1.log_new -m ./my_cmd.so -p 'clean; test1; dump' absval_ref.v
 | 
						|
	mv test1.log_new test1.log
 | 
						|
 | 
						|
test2.log: my_cmd.so
 | 
						|
	$(YOSYS) -Ql test2.log_new -m ./my_cmd.so -p 'hierarchy -top test; test2' sigmap_test.v
 | 
						|
	mv test2.log_new test2.log
 | 
						|
 |