mirror of
				https://github.com/openhwgroup/cvw
				synced 2025-02-11 06:05:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			211 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			211 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
ch5.debug: ch5
 | 
						|
	riscv64-unknown-elf-objdump -D ch5 > ch5.debug
 | 
						|
 | 
						|
ch5: ch5.S Makefile
 | 
						|
	riscv64-unknown-elf-gcc -nodefaultlibs -nostartfiles -o ch5 ch5.S
 | 
						|
# -ffreestanding 
 | 
						|
# -nostdlib 
 | 
						|
 | 
						|
clean: 
 | 
						|
	rm -f ch5 ch5.debug
 |