25 lines
		
	
	
		
			255 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			255 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # math sources
 | |
| .PATH: ${.CURDIR}/math
 | |
| 
 | |
| SRCS+=  \
 | |
| 	asin.c \
 | |
| 	atan.c \
 | |
| 	atan2.c \
 | |
| 	ceil.c \
 | |
| 	compare.c \
 | |
| 	exp.c \
 | |
| 	fabs.c \
 | |
| 	floor.c \
 | |
| 	fmod.c \
 | |
| 	hugeval.c \
 | |
| 	log.c \
 | |
| 	log10.c \
 | |
| 	pow.c \
 | |
| 	s_rint.c \
 | |
| 	scalbn.c \
 | |
| 	sin.c \
 | |
| 	sinh.c \
 | |
| 	sqrt.c \
 | |
| 	tan.c \
 | |
| 	tanh.c
 | 
