diff options
author | delphij <delphij@FreeBSD.org> | 2005-02-07 05:45:38 +0000 |
---|---|---|
committer | delphij <delphij@FreeBSD.org> | 2005-02-07 05:45:38 +0000 |
commit | 74be882c0ed8cb83f1090f2d7cdfcf01753406cd (patch) | |
tree | fa434092fd9ca6062c055520e1a5210459a8c553 /usr.bin | |
parent | dbc0713b05f13dc0ec86c7f0ad09ae5defe77c30 (diff) | |
download | FreeBSD-src-74be882c0ed8cb83f1090f2d7cdfcf01753406cd.zip FreeBSD-src-74be882c0ed8cb83f1090f2d7cdfcf01753406cd.tar.gz |
Revamp several Makefile nits:
- .PATH: is spelled ``.PATH: ''
- Don't forget to use DPADD so ``make checkdpadd'' is
not broken.
- LDADD should not come with + as it's empty in the
first place
Suggested by: ru
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/nc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/nc/Makefile b/usr.bin/nc/Makefile index 6ff368d..c274ba5 100644 --- a/usr.bin/nc/Makefile +++ b/usr.bin/nc/Makefile @@ -1,11 +1,12 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../contrib/netcat +.PATH: ${.CURDIR}/../../contrib/netcat PROG= nc SRCS= netcat.c atomicio.c socks.c CFLAGS+=-DIPSEC -LDADD+= -lipsec +LDADD= -lipsec +DPADD= -lipsec .include <bsd.prog.mk> |