10 lines
115 B
Makefile
10 lines
115 B
Makefile
|
# Makefile for libutil
|
||
|
|
||
|
CPPFLAGS+=-O -D_MINIX -D_POSIX_SOURCE
|
||
|
|
||
|
LIB= util
|
||
|
|
||
|
SRCS= openpty.c
|
||
|
|
||
|
.include <minix.lib.mk>
|