cca1b3aa87
in format strings. - Use (void) instead of (void *) when discarding strcat(3) return value. - Format string fixes to match variable types. - Change canon() len parameter and getcmd() size parameter type from int to size_t. - Style Makefile and increase WARNS to 2. PR: bin/140061 Submitted by: uqs Approved by: trasz (mentor)
16 lines
333 B
Makefile
16 lines
333 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../dump
|
|
|
|
PROG= restore
|
|
LINKS= ${BINDIR}/restore ${BINDIR}/rrestore
|
|
MAN= restore.8
|
|
MLINKS= restore.8 rrestore.8
|
|
SRCS= main.c interactive.c restore.c dirs.c symtab.c tape.c utilities.c \
|
|
dumprmt.c
|
|
WARNS?= 2
|
|
CFLAGS+= -DRRESTORE -D_ACL_PRIVATE
|
|
|
|
.include <bsd.prog.mk>
|