mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Add the Makefile for the process library which was missed in the previous
commit.
This commit is contained in:
parent
2c633af461
commit
2acd18806c
1 changed files with 20 additions and 0 deletions
20
lib/libproc/Makefile
Normal file
20
lib/libproc/Makefile
Normal 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>
|
||||
Loading…
Reference in a new issue