aboutsummaryrefslogtreecommitdiff
path: root/lib/libfigpar/Makefile
diff options
context:
space:
mode:
authorDevin Teske <dteske@FreeBSD.org>2014-11-04 23:46:01 +0000
committerDevin Teske <dteske@FreeBSD.org>2014-11-04 23:46:01 +0000
commit041394f38a59889f0e14ace3306df5310cd5aeac (patch)
tree98a67555867e474c5f716bf62b6c1120a5cfc536 /lib/libfigpar/Makefile
parentbccb6d5aa14a143f583903dbd28512ed3e93237f (diff)
downloadsrc-041394f38a59889f0e14ace3306df5310cd5aeac.tar.gz
src-041394f38a59889f0e14ace3306df5310cd5aeac.zip
Add new libraries/utilities for data throughput visualization.
dpv(3): dialog progress view library dpv(1): stream data from stdin or multiple paths with dialog progress view figpar(3): configuration file parsing library Reviews: D714 Reviewed by: jelischer, shurd Discussed at: MeetBSD California 2014 Vendor/Dev Summit Discussed on: -current MFC after: 21 days X-MFC-to: stable/10 stable/9
Notes
Notes: svn path=/head/; revision=274116
Diffstat (limited to 'lib/libfigpar/Makefile')
-rw-r--r--lib/libfigpar/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/libfigpar/Makefile b/lib/libfigpar/Makefile
new file mode 100644
index 000000000000..6f0196606c7b
--- /dev/null
+++ b/lib/libfigpar/Makefile
@@ -0,0 +1,21 @@
+# $FreeBSD$
+
+LIB= figpar
+SHLIB_MAJOR= 0
+INCS= figpar.h string_m.h
+MAN= figpar.3
+MLINKS= figpar.3 get_config_option.3 \
+ figpar.3 parse_config.3 \
+ figpar.3 replaceall.3 \
+ figpar.3 strcount.3 \
+ figpar.3 strexpand.3 \
+ figpar.3 strexpandnl.3 \
+ figpar.3 strtolower.3
+
+CFLAGS+= -I${.CURDIR}
+
+SRCS= figpar.c string_m.c
+
+WARNS?= 6
+
+.include <bsd.lib.mk>