# Makefile for GNU find.
# Do not use this makefile directly, but only from `../Makefile'.
# Copyright (C) 1990 Free Software Foundation, Inc.

OBJECTS = find$O fstype$O parser$O pred$O tree$O util$O

all:	find.exe
.PHONY: all

.c$O:
	$(CC) -c $(CFLAGS) $<

find.exe: $(OBJECTS)
	$(CC) -o $@ $(LDFLAGS) $(OBJECTS) $(LIBS)

parser$O: ../lib/modechange.h
find$O fstype$O parser$O pred$O: ../lib/modetype.h
find$O parser$O pred$O tree$O util$O: defs.h
pred$O: ../lib/wait.h
