From: solar Date: Tue, 22 Nov 2005 04:59:47 +0000 (+0000) Subject: Reordered 'find' options to get rid of Cygwin warnings. X-Git-Tag: v0.4~64 X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=d9a4e15860242e4dc5bda8c69211ef687db502de Reordered 'find' options to get rid of Cygwin warnings. --- diff --git a/Makefile b/Makefile index e2f8e6d..571951d 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ # This is a list of all non-source files that are part of the distribution. AUXFILES := Makefile Readme.txt -SRCFILES := $(shell find . -name "*.c" -mindepth 1 -maxdepth 3) -HDRFILES := $(shell find . -name "*.h" -mindepth 1 -maxdepth 3) +SRCFILES := $(shell find . -mindepth 1 -maxdepth 3 -name "*.c") +HDRFILES := $(shell find . -mindepth 1 -maxdepth 3 -name "*.h") OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES))