17 lines
207 B
Makefile
17 lines
207 B
Makefile
|
# Makefile for libmthread
|
||
|
|
||
|
CPPFLAGS+=-O -D_MINIX -D_POSIX_SOURCE -Wall
|
||
|
|
||
|
LIB= mthread
|
||
|
|
||
|
SRCS= \
|
||
|
allocate.c \
|
||
|
attribute.c \
|
||
|
mutex.c \
|
||
|
misc.c \
|
||
|
queue.c \
|
||
|
condition.c \
|
||
|
scheduler.c
|
||
|
|
||
|
.include <bsd.lib.mk>
|