diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
commit | 47d7e8a96f52d91b1f0fe5184f0f5d88c897db38 (patch) | |
tree | 687ecea23d9cd395958695d4b6773b1cd2bafea1 /sbin | |
parent | 3962ef4305e41fefa0f7dfba4b66067f97d98d2c (diff) | |
download | src-47d7e8a96f52d91b1f0fe5184f0f5d88c897db38.tar.gz src-47d7e8a96f52d91b1f0fe5184f0f5d88c897db38.zip |
Notes
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/fsdb/Makefile | 4 | ||||
-rw-r--r-- | sbin/md5/Makefile | 4 | ||||
-rw-r--r-- | sbin/rcorder/Makefile | 4 | ||||
-rw-r--r-- | sbin/routed/Makefile | 4 | ||||
-rw-r--r-- | sbin/routed/rtquery/Makefile | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/sbin/fsdb/Makefile b/sbin/fsdb/Makefile index 5e1591b22ce9..d205e274e2de 100644 --- a/sbin/fsdb/Makefile +++ b/sbin/fsdb/Makefile @@ -8,8 +8,8 @@ SRCS= fsdb.c fsdbutil.c \ dir.c ea.c fsutil.c inode.c pass1.c pass1b.c pass2.c pass3.c pass4.c \ pass5.c setup.c utilities.c ffs_subr.c ffs_tables.c CFLAGS+= -I${.CURDIR}/../fsck_ffs -LDADD+= -ledit -ltermcap -DPADD+= ${LIBEDIT} ${LIBTERMCAP} +LDADD= -ledit -ltermcap +DPADD= ${LIBEDIT} ${LIBTERMCAP} .PATH: ${.CURDIR}/../fsck_ffs ${.CURDIR}/../../sys/ufs/ffs .include <bsd.prog.mk> diff --git a/sbin/md5/Makefile b/sbin/md5/Makefile index 352212829ddb..56187d72c4e3 100644 --- a/sbin/md5/Makefile +++ b/sbin/md5/Makefile @@ -3,7 +3,7 @@ PROG= md5 -LDADD+= -lmd -DPADD+= ${LIBMD} +LDADD= -lmd +DPADD= ${LIBMD} .include <bsd.prog.mk> diff --git a/sbin/rcorder/Makefile b/sbin/rcorder/Makefile index 9d8d27bb0bd0..9cdac626b678 100644 --- a/sbin/rcorder/Makefile +++ b/sbin/rcorder/Makefile @@ -5,8 +5,8 @@ PROG= rcorder SRCS= ealloc.c hash.c rcorder.c MAN= rcorder.8 -LDADD+= -lutil -DPADD+= ${LIBUTIL} +LDADD= -lutil +DPADD= ${LIBUTIL} WARNS= 0 # XXX hack for make's hash.[ch] diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile index 1b6a6640a0b8..34c8e555b1ca 100644 --- a/sbin/routed/Makefile +++ b/sbin/routed/Makefile @@ -5,8 +5,8 @@ PROG= routed SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c MAN= routed.8 SUBDIR= rtquery -LDADD+= -lmd -DPADD+= ${LIBMD} +LDADD= -lmd +DPADD= ${LIBMD} #COPTS= -g -DDEBUG -W -Wall -Wcast-align -Wcast-qual -Winline -Wpointer-arith -Wnested-externs -Wwrite-strings -Wunused WARNS= 0 diff --git a/sbin/routed/rtquery/Makefile b/sbin/routed/rtquery/Makefile index 61a251180041..1b553a3f766f 100644 --- a/sbin/routed/rtquery/Makefile +++ b/sbin/routed/rtquery/Makefile @@ -4,8 +4,8 @@ PROG= rtquery MAN= rtquery.8 -LDADD+= -lmd -DPADD+= ${LIBMD} +LDADD= -lmd +DPADD= ${LIBMD} #COPTS= -g -DDEBUG -W -Wall -Wcast-align -Wcast-qual -Winline -Wpointer-arith -Wnested-externs -Wwrite-strings -Wunused WARNS= 0 |