12 lines
151 B
Makefile
12 lines
151 B
Makefile
# Makefile for libtimers
|
|
|
|
CPPFLAGS+=-O -D_MINIX -D_POSIX_SOURCE
|
|
|
|
LIB= timers
|
|
|
|
SRCS= \
|
|
tmrs_set.c \
|
|
tmrs_clr.c \
|
|
tmrs_exp.c
|
|
|
|
.include <minix.lib.mk>
|