X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=571951d39bd62ad1643b8e2e0864ee85feffc366;hb=6d45909b9d6109c54bd0b79e508662fdd17b26d6;hp=e2f8e6d671fa5892ae07bb289dc345415af6ee24;hpb=97c9356afe9828ac405a8c6710a2ef4ed5e10c50;p=pdclib 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))