28 lines
		
	
	
		
			288 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			288 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# Makefile for lib/math.
 | 
						|
 | 
						|
CFLAGS="-O -D_MINIX -D_POSIX_SOURCE"
 | 
						|
 | 
						|
LIBRARIES=libc
 | 
						|
 | 
						|
libc_FILES=" \
 | 
						|
	asin.c \
 | 
						|
	atan.c \
 | 
						|
	atan2.c \
 | 
						|
	ceil.c \
 | 
						|
	exp.c \
 | 
						|
	fabs.c \
 | 
						|
	floor.c \
 | 
						|
	fmod.c \
 | 
						|
	hugeval.c \
 | 
						|
	log.c \
 | 
						|
	log10.c \
 | 
						|
	pow.c \
 | 
						|
	s_rint.c \
 | 
						|
	sin.c \
 | 
						|
	sinh.c \
 | 
						|
	sqrt.c \
 | 
						|
	tan.c \
 | 
						|
	tanh.c"
 | 
						|
 | 
						|
TYPE=both
 |