From 0d3b5f61d6092677a4e644475346ecd9831d6f3d Mon Sep 17 00:00:00 2001 From: solar Date: Thu, 17 Mar 2011 05:47:37 +0000 Subject: [PATCH] find did not match on symlinks. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@515 546481bc-9713-0410-bf18-d3337bbf4a3e --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5397eab..4d9a401 100644 --- a/Makefile +++ b/Makefile @@ -9,9 +9,9 @@ AUXFILES := Makefile Readme.txt # Directories belonging to the project PROJDIRS := functions includes internals # All source files of the project -SRCFILES := $(shell find $(PROJDIRS) -type f -name "*.c") +SRCFILES := $(shell find -L $(PROJDIRS) -type f -name "*.c") # All header files of the project -HDRFILES := $(shell find $(PROJDIRS) -type f -name "*.h") +HDRFILES := $(shell find -L $(PROJDIRS) -type f -name "*.h") # All .c files in functions/_PDCLIB that do not have a regression test driver INTFILES := _Exit atomax digits open print scan remove rename seed stdinit strtox_main strtox_prelim filemode eol errno seek prepread prepwrite allocpages tmpfilename closeall # All object files in the library -- 2.30.2