plan9fox/sys/src/libc/arm/mkfile
cinap_lenrek 3d05e77ca1 libc: change tas/sleep locks to cas/semacquire/semrelease locks (from sources)
spinlocks have been changed to use the new semacquire/semrelease
syscalls in combination with atomic compare and swap operations.
2013-09-21 19:53:27 +02:00

35 lines
399 B
Makefile

objtype=arm
</$objtype/mkfile
LIB=/$objtype/lib/libc.a
SFILES=\
argv0.s\
atom.s\
div.s\
getcallerpc.s\
getfcr.s\
main9.s\
main9p.s\
memmove.s\
memset.s\
setjmp.s\
strchr.s\
strcmp.s\
strcpy.s\
tas.s\
vlop.s\
CFILES=\
notejmp.c\
vlrt.c\
HFILES=/sys/include/libc.h
OFILES=${CFILES:%.c=%.$O} ${SFILES:%.s=%.$O}
UPDATE=mkfile\
$HFILES\
$CFILES\
$SFILES\
</sys/src/cmd/mksyslib