e98080b1e6
2) WARNs fixes (rename option to lookup_option to avoid shadowing, rename argv to argv1 to avoid shadowing, const stuff, prototypes, __unused). 3) Remove "register"s.
11 lines
293 B
Makefile
11 lines
293 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= find
|
|
SRCS= find.c function.c ls.c main.c misc.c operator.c option.c getdate.y
|
|
CLEANFILES+= getdate.c y.tab.h
|
|
CFLAGS+= -I${.CURDIR}/../../gnu/usr.bin/cvs/lib -DHAVE_CONFIG_H
|
|
.PATH: ${.CURDIR}/../../contrib/cvs/lib
|
|
|
|
.include <bsd.prog.mk>
|