diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-12-28 16:59:32 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2007-12-28 16:59:32 +0000 |
commit | e67798564e2c2f16e166c1dd27c68911097be333 (patch) | |
tree | 9f32487986c0f8bf37a11f93bf9d5b734353d452 /usr.sbin/snmpd/Makefile | |
parent | 6f3b6397427423d12b99c79d668ea70e43d4748c (diff) |
split code handling the "structure of management information" and the
"message processing subsystem" into separate files smi.c and mps.c
Diffstat (limited to 'usr.sbin/snmpd/Makefile')
-rw-r--r-- | usr.sbin/snmpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/snmpd/Makefile b/usr.sbin/snmpd/Makefile index 91bcb0d7700..4e303733c40 100644 --- a/usr.sbin/snmpd/Makefile +++ b/usr.sbin/snmpd/Makefile @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile,v 1.2 2007/12/06 04:07:47 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2007/12/28 16:59:31 reyk Exp $ PROG= snmpd MAN= snmpd.8 snmpd.conf.5 SRCS= parse.y ber.c log.c control.c buffer.c imsg.c snmpe.c \ - mps.c mib.c kroute.c snmpd.c + mps.c mib.c smi.c kroute.c snmpd.c LDADD= -levent DPADD= ${LIBEVENT} |