diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-08 02:51:37 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 1994-09-08 02:51:37 +0000 |
commit | bb49371b5dd0857ecfc7ef59088320ecdadaea10 (patch) | |
tree | dd3834f14aa457e8bd05345656d2288103f00432 /usr.sbin/mrouted/mtrace/Makefile | |
parent | 7c680644c9dd9843f13719a1ca0de6da77bec37c (diff) |
Make it compile and (except for mrouted which is untested as yet) run.
Some of these ``modified'' files aren't really modified at all, but CVS
isn't smart enough to know the difference.
Notes
Notes:
svn path=/head/; revision=2560
Diffstat (limited to 'usr.sbin/mrouted/mtrace/Makefile')
-rw-r--r-- | usr.sbin/mrouted/mtrace/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/usr.sbin/mrouted/mtrace/Makefile b/usr.sbin/mrouted/mtrace/Makefile new file mode 100644 index 000000000000..2dd538b25b81 --- /dev/null +++ b/usr.sbin/mrouted/mtrace/Makefile @@ -0,0 +1,20 @@ +# $Id$ + +PROG= mtrace + +S= ${.CURDIR}/.. +.PATH: $S +CFLAGS+= -I$S +LDADD+= -lmrouted +.if exists($S/common/obj) +LDDESTDIR+= -L$S/common/obj +DPADD+= $S/common/obj/libmrouted.a +.else +LDDESTDIR+= -L$S/common +DPADD+= $S/common/libmrouted.a +.endif + +SRCS= mtrace.c +NOMAN= + +.include <bsd.prog.mk> |