mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 13:29:12 +00:00 
			
		
		
		
	Added yosys-svgviewer to build system and renamed filterlib to yosys-filterlib
This commit is contained in:
		
							parent
							
								
									62b9e16f87
								
							
						
					
					
						commit
						9c401b58a2
					
				
					 4 changed files with 18 additions and 5 deletions
				
			
		
							
								
								
									
										3
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										3
									
								
								.gitignore
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -9,6 +9,7 @@ qtcreator.config
 | 
			
		|||
qtcreator.creator
 | 
			
		||||
qtcreator.creator.user
 | 
			
		||||
Makefile.conf
 | 
			
		||||
filterlib
 | 
			
		||||
yosys
 | 
			
		||||
yosys-config
 | 
			
		||||
yosys-filterlib
 | 
			
		||||
yosys-svgviewer
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										9
									
								
								Makefile
									
										
									
									
									
								
							
							
						
						
									
										9
									
								
								Makefile
									
										
									
									
									
								
							| 
						 | 
				
			
			@ -12,7 +12,7 @@ OBJS += libs/sha1/sha1.o
 | 
			
		|||
OBJS += libs/subcircuit/subcircuit.o
 | 
			
		||||
 | 
			
		||||
GENFILES =
 | 
			
		||||
TARGETS = yosys yosys-config
 | 
			
		||||
TARGETS = yosys yosys-config yosys-svgviewer
 | 
			
		||||
 | 
			
		||||
all: top-all
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -51,6 +51,10 @@ yosys-config: yosys-config.in
 | 
			
		|||
	sed 's,@CXX@,$(CXX),; s,@CXXFLAGS@,$(CXXFLAGS),; s,@LDFLAGS@,$(LDFLAGS),; s,@LDLIBS@,$(LDLIBS),;' < yosys-config.in > yosys-config
 | 
			
		||||
	chmod +x yosys-config
 | 
			
		||||
 | 
			
		||||
yosys-svgviewer: libs/svgviewer/*
 | 
			
		||||
	cd libs/svgviewer && qmake && make
 | 
			
		||||
	cp libs/svgviewer/svgviewer yosys-svgviewer
 | 
			
		||||
 | 
			
		||||
test: yosys
 | 
			
		||||
	cd tests/simple && bash run-test.sh
 | 
			
		||||
	cd tests/hana && bash run-test.sh
 | 
			
		||||
| 
						 | 
				
			
			@ -59,10 +63,13 @@ test: yosys
 | 
			
		|||
install: yosys
 | 
			
		||||
	install yosys /usr/local/bin/yosys
 | 
			
		||||
	install yosys-config /usr/local/bin/yosys-config
 | 
			
		||||
	install yosys-svgviewer /usr/local/bin/yosys-svgviewer
 | 
			
		||||
	install yosys-filterlib /usr/local/bin/yosys-filterlib
 | 
			
		||||
 | 
			
		||||
clean:
 | 
			
		||||
	rm -f $(OBJS) $(GENFILES) $(TARGETS)
 | 
			
		||||
	rm -f libs/*/*.d frontends/*/*.d passes/*/*.d backends/*/*.d kernel/*.d
 | 
			
		||||
	test ! -f libs/svgviewer/Makefile || make -C libs/svgviewer distclean
 | 
			
		||||
 | 
			
		||||
mrproper: clean
 | 
			
		||||
	git clean -xdf
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										5
									
								
								libs/svgviewer/.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								libs/svgviewer/.gitignore
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,5 @@
 | 
			
		|||
Makefile
 | 
			
		||||
moc_mainwindow.cpp
 | 
			
		||||
moc_svgview.cpp
 | 
			
		||||
qrc_svgviewer.cpp
 | 
			
		||||
svgviewer
 | 
			
		||||
| 
						 | 
				
			
			@ -2,9 +2,9 @@
 | 
			
		|||
OBJS += passes/dfflibmap/dfflibmap.o
 | 
			
		||||
OBJS += passes/dfflibmap/libparse.o
 | 
			
		||||
 | 
			
		||||
TARGETS += filterlib
 | 
			
		||||
TARGETS += yosys-filterlib
 | 
			
		||||
GENFILES += passes/dfflibmap/filterlib.o
 | 
			
		||||
 | 
			
		||||
filterlib: passes/dfflibmap/filterlib.o
 | 
			
		||||
	$(CXX) -o filterlib $(LDFLAGS) $^ $(LDLIBS)
 | 
			
		||||
yosys-filterlib: passes/dfflibmap/filterlib.o
 | 
			
		||||
	$(CXX) -o yosys-filterlib $(LDFLAGS) $^ $(LDLIBS)
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue