minix/commands/find/Makefile

15 lines
275 B
Makefile
Raw Normal View History

2010-06-09 14:19:38 +02:00
# $NetBSD: Makefile,v 1.12 2006/12/14 20:55:56 he Exp $
# from: @(#)Makefile 8.1 (Berkeley) 6/6/93
2010-06-09 14:27:36 +02:00
.include <minix.own.mk>
2010-06-09 14:19:38 +02:00
PROG= find
SRCS= find.c function.c ls.c main.c misc.c operator.c option.c
2010-06-09 14:27:36 +02:00
CFLAGS += -Wall
2010-06-09 14:19:38 +02:00
LDADD+=-lutil
DPADD+=${LIBUTIL}
2010-06-09 14:27:36 +02:00
.include <minix.prog.mk>