1# Makefile for libmthread 2 3LIB= mthread 4 5SRCS= \ 6 allocate.c \ 7 attribute.c \ 8 condition.c \ 9 event.c \ 10 key.c \ 11 misc.c \ 12 mutex.c \ 13 pthread_compat.c \ 14 queue.c \ 15 rwlock.c \ 16 scheduler.c \ 17 18WARNS?= 4 19 20CFLAGS+= -fno-builtin 21 22.include <bsd.lib.mk> 23