From 797424d85b3c4b00f9953ddaad93922cf5e3c2da Mon Sep 17 00:00:00 2001 From: cognet Date: Fri, 14 May 2004 13:31:21 +0000 Subject: Use WARNS?=3 for these in the arm case for now, due to toolchain issues. --- sbin/atm/atm/Makefile | 5 +++++ sbin/atm/atmconfig/Makefile | 5 +++++ sbin/atm/ilmid/Makefile | 5 +++++ 3 files changed, 15 insertions(+) (limited to 'sbin/atm') diff --git a/sbin/atm/atm/Makefile b/sbin/atm/atm/Makefile index df5db86..973e5cc 100644 --- a/sbin/atm/atm/Makefile +++ b/sbin/atm/atm/Makefile @@ -28,7 +28,12 @@ SRCS= atm.c atm_fore200.c atm_inet.c atm_print.c \ atm_set.c atm_show.c atm_subr.c MAN= atm.8 +.if ${MACHINE_ARCH} == "arm" +WARNS?= 3 +.else WARNS?= 6 +.endif + CFLAGS+= -I${.CURDIR}/../../../sys DPADD= ${LIBATM} diff --git a/sbin/atm/atmconfig/Makefile b/sbin/atm/atmconfig/Makefile index ddbee80..40134fc 100644 --- a/sbin/atm/atmconfig/Makefile +++ b/sbin/atm/atmconfig/Makefile @@ -8,7 +8,12 @@ PROG= atmconfig SRCS= main.c diag.c natm.c MAN= atmconfig.8 + +.if ${MACHINE_ARCH} == "arm" +WARNS?= 3 +.else WARNS?= 9 +.endif FILES= atmconfig.help FILESDIR= /usr/share/doc/atm diff --git a/sbin/atm/ilmid/Makefile b/sbin/atm/ilmid/Makefile index cfd0270..67d9bab 100644 --- a/sbin/atm/ilmid/Makefile +++ b/sbin/atm/ilmid/Makefile @@ -26,7 +26,12 @@ PROG= ilmid MAN= ilmid.8 +.if ${MACHINE_ARCH} == "arm" +WARNS?= 3 +.else WARNS?= 6 +.endif + CFLAGS+= -I${.CURDIR}/../../../sys DPADD= ${LIBATM} -- cgit v1.1