22289a8c3d
This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon
16 lines
224 B
Makefile
16 lines
224 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR:H}/shared
|
|
|
|
PROG= ggatec
|
|
MAN= ggatec.8
|
|
SRCS= ggatec.c ggate.c
|
|
|
|
CFLAGS+= -DMAX_SEND_SIZE=32768
|
|
CFLAGS+= -DLIBGEOM
|
|
CFLAGS+= -I${.CURDIR:H}/shared
|
|
|
|
LIBADD= geom util pthread
|
|
|
|
.include <bsd.prog.mk>
|