33 lines
		
	
	
	
		
			735 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
	
		
			735 B
		
	
	
	
		
			Text
		
	
	
	
	
	
-- $Source$
 | 
						|
-- $State$
 | 
						|
-- $Revision$
 | 
						|
 | 
						|
local d = ROOTDIR.."plat/linux386/libsys/"
 | 
						|
 | 
						|
libsys_linux386 = acklibrary {
 | 
						|
	ACKBUILDFLAGS = {PARENT, "-ansi"},
 | 
						|
	ACKINCLUDES = {"%BINDIR%include"},
 | 
						|
	
 | 
						|
	ackfile (d.."errno.s"),
 | 
						|
	ackfile (d.."_hol0.s"),
 | 
						|
	ackfile (d.."_syscall.s"),
 | 
						|
	
 | 
						|
	ackfile (d.."brk.c"),
 | 
						|
	ackfile (d.."close.c"),
 | 
						|
	ackfile (d.."creat.c"),
 | 
						|
	ackfile (d.."getpid.c"),
 | 
						|
	ackfile (d.."gettimeofday.c"),
 | 
						|
	ackfile (d.."_exit.c"),
 | 
						|
	ackfile (d.."isatty.c"),
 | 
						|
	ackfile (d.."kill.c"),
 | 
						|
	ackfile (d.."lseek.c"),
 | 
						|
	ackfile (d.."open.c"),
 | 
						|
	ackfile (d.."read.c"),
 | 
						|
	ackfile (d.."sbrk.c"),
 | 
						|
	ackfile (d.."signal.c"),
 | 
						|
	ackfile (d.."write.c"),
 | 
						|
	ackfile (d.."unlink.c"),
 | 
						|
	ackfile (d.."remove.c"),
 | 
						|
	
 | 
						|
	install = pm.install("%BINDIR%lib/%PLATFORM%/libsys.a"),
 | 
						|
}
 |