diff options
author | trhodes <trhodes@FreeBSD.org> | 2005-04-22 18:57:32 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2005-04-22 18:57:32 +0000 |
commit | a9041ad05e65ee883064bafe1354b882f7a6e926 (patch) | |
tree | 8eaec3ef942b33f43cb2a0095b2fc64d99d2c22d | |
parent | 01f75275c618543eb788c9bb841d7ed8a0d5e9f5 (diff) | |
download | FreeBSD-src-a9041ad05e65ee883064bafe1354b882f7a6e926.zip FreeBSD-src-a9041ad05e65ee883064bafe1354b882f7a6e926.tar.gz |
Enforce style.Makefile(5).
Glanced at by: ru (some time ago).
-rw-r--r-- | games/factor/Makefile | 2 | ||||
-rw-r--r-- | gnu/lib/libdialog/Makefile | 2 | ||||
-rw-r--r-- | gnu/lib/libstdc++/Makefile | 2 | ||||
-rw-r--r-- | lib/libatm/Makefile | 2 | ||||
-rw-r--r-- | lib/libopie/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/games/factor/Makefile b/games/factor/Makefile index f8d5328..62c6f60 100644 --- a/games/factor/Makefile +++ b/games/factor/Makefile @@ -7,8 +7,8 @@ CFLAGS+=-I${.CURDIR}/../primes .if !defined(NO_CRYPT) && !defined(NO_OPENSSL) CFLAGS+=-DHAVE_OPENSSL -LDADD= -lcrypto DPADD= ${LIBCRYPTO} +LDADD= -lcrypto .endif MAN= factor.6 diff --git a/gnu/lib/libdialog/Makefile b/gnu/lib/libdialog/Makefile index 9f64ca0..1d6a6aa 100644 --- a/gnu/lib/libdialog/Makefile +++ b/gnu/lib/libdialog/Makefile @@ -17,8 +17,8 @@ EXAMPLES= Makefile check1.c check2.c check3.c dselect.c fselect.c \ CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE -LDADD= -lncurses DPADD= ${LIBNCURSES} +LDADD= -lncurses .if !defined(NO_HTML) FILES= ${EXAMPLES:C;^;${.CURDIR}/TESTS/;} diff --git a/gnu/lib/libstdc++/Makefile b/gnu/lib/libstdc++/Makefile index 6008940..80fae1e 100644 --- a/gnu/lib/libstdc++/Makefile +++ b/gnu/lib/libstdc++/Makefile @@ -17,8 +17,8 @@ CFLAGS+= -frandom-seed=RepeatabilityConsideredGood CXXFLAGS+= -fno-implicit-templates -ffunction-sections -fdata-sections \ -Wno-deprecated -LDADD= -lm DPADD= ${LIBM} +LDADD= -lm # libstdc++ sources SRCS+= allocator.cc codecvt.cc complex_io.cc ctype.cc debug.cc debug_list.cc \ diff --git a/lib/libatm/Makefile b/lib/libatm/Makefile index c7b335e..bc5fb9d 100644 --- a/lib/libatm/Makefile +++ b/lib/libatm/Makefile @@ -28,8 +28,8 @@ SHLIBDIR?= /lib SRCS= atm_addr.c cache_key.c ioctl_subr.c ip_addr.c ip_checksum.c timer.c INCS= libatm.h -LDADD= -lmd DPADD= ${LIBMD} +LDADD= -lmd .if ${MACHINE_ARCH} == "arm" WARNS?= 3 diff --git a/lib/libopie/Makefile b/lib/libopie/Makefile index 8f95c40..f26ec1d 100644 --- a/lib/libopie/Makefile +++ b/lib/libopie/Makefile @@ -26,8 +26,8 @@ CFLAGS+=-I${.CURDIR} -I${OPIE_DIST} -I${DIST_DIR} \ ACCESSFILE?= \"/etc/opieaccess\" CFLAGS+= -DINSECURE_OVERRIDE -DPATH_ACCESS_FILE=${ACCESSFILE} -LDADD= -lmd DPADD= ${LIBMD} +LDADD= -lmd MAN= ${OPIE_DIST}/opie.4 ${OPIE_DIST}/opiekeys.5 ${OPIE_DIST}/opieaccess.5 |