From: solar Date: Sat, 24 Dec 2005 13:48:33 +0000 (+0000) Subject: Changed handling of regtest exclusions. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=3239f029b5b8031864fe58545a37c47d40f57793;p=fw%2Fpdclib Changed handling of regtest exclusions. git-svn-id: https://srv7.svn-repos.de/dev34/pdclib/trunk@116 546481bc-9713-0410-bf18-d3337bbf4a3e --- diff --git a/Makefile b/Makefile index 802e28e..e58d72a 100644 --- a/Makefile +++ b/Makefile @@ -4,10 +4,10 @@ AUXFILES := Makefile Readme.txt PROJDIRS := functions includes internals SRCFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.c") HDRFILES := $(shell find $(PROJDIRS) -mindepth 1 -maxdepth 3 -name "*.h") -INTFILES := $(patsubst %.c,%.r,$(shell find functions/_PDCLIB -name "*.c")) +INTFILES := atomax digits seed strtox_main strtox_prelim OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) TSTFILES := $(patsubst %.c,%.t,$(SRCFILES)) -REGFILES := $(filter-out $(INTFILES),$(patsubst %.c,%.r,$(SRCFILES))) +REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%.r,$(INTFILES)),$(patsubst %.c,%.r,$(SRCFILES))) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) ALLFILES := $(SRCFILES) $(HDRFILES) $(AUXFILES)