aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/libalias/Makefile
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1997-05-23 04:41:31 +0000
committerBrian Somers <brian@FreeBSD.org>1997-05-23 04:41:31 +0000
commit3b160b8b6e5ee44743191ea525734343cc213906 (patch)
treea5b3160e2f1945128a5745bcee02ac76204fc0ec /sys/netinet/libalias/Makefile
parent3f72ab23cd602261876d49fcc0d94f802def2b8d (diff)
downloadsrc-3b160b8b6e5ee44743191ea525734343cc213906.tar.gz
src-3b160b8b6e5ee44743191ea525734343cc213906.zip
Create the alias library. This is currently only used by
ppp (or will be shortly). Natd can now be updated to use this library rather than carrying its own version of the code. Submitted by: Charles Mott <cmott@srv.net>
Notes
Notes: svn path=/cvs2svn/branches/CMOTT/; revision=26026
Diffstat (limited to 'sys/netinet/libalias/Makefile')
-rw-r--r--sys/netinet/libalias/Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/sys/netinet/libalias/Makefile b/sys/netinet/libalias/Makefile
new file mode 100644
index 000000000000..6081e489d80b
--- /dev/null
+++ b/sys/netinet/libalias/Makefile
@@ -0,0 +1,11 @@
+LIB= alias
+SHLIB_MAJOR= 2
+SHLIB_MINOR= 1
+CFLAGS+=-Wall -I${.CURDIR}
+SRCS= alias.c alias_db.c alias_ftp.c alias_irc.c alias_util.c
+
+beforeinstall:
+ ${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/alias.h \
+ ${DESTDIR}/usr/include
+
+.include <bsd.lib.mk>