forked from Github_Repos/cvw
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			594 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			594 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile
 | 
						|
 | 
						|
CC     = gcc
 | 
						|
CFLAGS = -O3 -Wno-format-overflow
 | 
						|
LIBS   = -lm
 | 
						|
LFLAGS = -L. 
 | 
						|
# Link against the riscv-isa-sim version of SoftFloat rather than 
 | 
						|
# the regular version to get RISC-V NaN behavior
 | 
						|
IFLAGS   = -I$(RISCV)/riscv-isa-sim/softfloat
 | 
						|
LIBS   = $(RISCV)/riscv-isa-sim/build/libsoftfloat.a
 | 
						|
#IFLAGS = -I../../../addins/SoftFloat-3e/source/include/
 | 
						|
#LIBS   = ../../../addins/SoftFloat-3e/build/Linux-x86_64-GCC/softfloat.a
 | 
						|
SRCS   = $(wildcard *.c)
 | 
						|
 | 
						|
PROGS = $(patsubst %.c,%,$(SRCS))
 | 
						|
 | 
						|
all:	$(PROGS)
 | 
						|
 | 
						|
%: %.c
 | 
						|
	$(CC) $(CFLAGS) $(IFLAGS) $(LFLAGS) -o $@ $< $(LIBS)
 | 
						|
 | 
						|
clean: 
 | 
						|
	rm -f $(PROGS)
 |