Add the Makefile for the process library which was missed in the previous

commit.
This commit is contained in:
John Birrell 2008-05-22 02:10:14 +00:00
parent 2c633af461
commit 2acd18806c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179186

20
lib/libproc/Makefile Normal file
View File

@ -0,0 +1,20 @@
# $FreeBSD$
LIB= proc
SRCS= \
proc_create.c \
proc_sym.c \
proc_util.c
INCS= libproc.h
CFLAGS+= -I. -I${.CURDIR}
SHLIB_MAJOR= 1
WARNS?= 6
WITHOUT_MAN= yes
.include <bsd.lib.mk>