diff options
author | ru <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2004-02-05 22:44:25 +0000 |
commit | 743cc6d00297660ac72c8a7b391b0048d5699479 (patch) | |
tree | 687ecea23d9cd395958695d4b6773b1cd2bafea1 /sbin | |
parent | 5d21c38b892d54673b3a900d99c309419100136a (diff) | |
download | FreeBSD-src-743cc6d00297660ac72c8a7b391b0048d5699479.zip FreeBSD-src-743cc6d00297660ac72c8a7b391b0048d5699479.tar.gz |
Fixed style of DPADD and LDADD assignments as per style.Makefile(5).
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 5e1591b..d205e27 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 3522128..56187d7 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 9d8d27b..9cdac62 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 1b6a664..34c8e55 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 61a2511..1b553a3 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 |