From 743cc6d00297660ac72c8a7b391b0048d5699479 Mon Sep 17 00:00:00 2001 From: ru Date: Thu, 5 Feb 2004 22:44:25 +0000 Subject: Fixed style of DPADD and LDADD assignments as per style.Makefile(5). --- sbin/fsdb/Makefile | 4 ++-- sbin/md5/Makefile | 4 ++-- sbin/rcorder/Makefile | 4 ++-- sbin/routed/Makefile | 4 ++-- sbin/routed/rtquery/Makefile | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) (limited to 'sbin') 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 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 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 -- cgit v1.1