mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-03 12:35:02 +00:00
Use WARNS?=3 for these in the arm case for now, due to toolchain issues.
This commit is contained in:
parent
cdf6449a93
commit
c1b2de5af0
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=129215
@ -33,4 +33,8 @@ SRCS= ar_io.c ar_subs.c buf_subs.c cache.c cpio.c file_subs.c ftree.c \
|
||||
#MAN= pax.1 tar.1 cpio.1
|
||||
#LINKS= ${BINDIR}/pax ${BINDIR}/tar ${BINDIR}/pax ${BINDIR}/cpio
|
||||
|
||||
.if ${MACHINE_ARCH} == "arm"
|
||||
WARNS?= 3
|
||||
.endif
|
||||
|
||||
.include <bsd.prog.mk>
|
||||
|
@ -3,7 +3,11 @@
|
||||
LIB= archive
|
||||
SHLIB_MAJOR= 1
|
||||
|
||||
.if ${MACHINE_ARCH} == "arm"
|
||||
WARNS?= 3
|
||||
.else
|
||||
WARNS?= 6
|
||||
.endif
|
||||
|
||||
# I'm not yet ready for a shared version of this library, as
|
||||
# there are a couple of API changes still in the works.
|
||||
|
@ -3,7 +3,11 @@
|
||||
LIB= archive
|
||||
SHLIB_MAJOR= 1
|
||||
|
||||
.if ${MACHINE_ARCH} == "arm"
|
||||
WARNS?= 3
|
||||
.else
|
||||
WARNS?= 6
|
||||
.endif
|
||||
|
||||
# I'm not yet ready for a shared version of this library, as
|
||||
# there are a couple of API changes still in the works.
|
||||
|
@ -30,6 +30,11 @@ INCS= libatm.h
|
||||
|
||||
LDADD= -lmd
|
||||
DPADD= ${LIBMD}
|
||||
|
||||
.if ${MACHINE_ARCH} == "arm"
|
||||
WARNS?= 3
|
||||
.else
|
||||
WARNS?= 6
|
||||
.endif
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
@ -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}
|
||||
|
@ -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
|
||||
|
@ -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}
|
||||
|
@ -7,7 +7,11 @@ SRCS+= modeedit.c
|
||||
.else
|
||||
CFLAGS+= -DMINIMALISTIC
|
||||
.endif
|
||||
.if ${MACHINE_ARCH} == "arm"
|
||||
WARNS?= 3
|
||||
.else
|
||||
WARNS?= 6
|
||||
.endif
|
||||
DPADD= ${LIBCAM} ${LIBSBUF}
|
||||
LDADD= -lcam -lsbuf
|
||||
MAN= camcontrol.8
|
||||
|
Loading…
Reference in New Issue
Block a user