From 93c27ab95c72e849e4600cdf699d3b5d41045275 Mon Sep 17 00:00:00 2001 From: solar Date: Tue, 22 Nov 2005 04:59:47 +0000 Subject: [PATCH] Reordered 'find' options to get rid of Cygwin warnings. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@76 546481bc-9713-0410-bf18-d3337bbf4a3e --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.47.2