mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
6f98638581
Since then we have living with a GPL'ed find(1) due to grabbing getdate.y from src/contrib/cvs and its user of the GPL'ed xtime.h. I don't even want to think about how this could have affected people using our source base. Would it have been too much trouble to do then what I did now? Copied getdate.y (public domain) to usr.bin/find and change to use standard system headers. find(1) now compiles simply with out having to go to extra effort to do so. Pointed hat to: phk Build fixed on: gcc 3.1 using platforms
11 lines
191 B
Makefile
11 lines
191 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
|
|
CFLAGS+= -I${.CURDIR}
|
|
YFLAGS=
|
|
|
|
.include <bsd.prog.mk>
|