X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=Makefile;h=0d0c8e0acbe29d4774f01626660580dd91cda9d2;hp=72f80717aa68e17dc4bbeee909a8891a55978b9e;hb=2040228f27d623585d339dec175c4e779ca9edb5;hpb=3ffa88d3e16e7564ff81bf3650b5afa113caac97 diff --git a/Makefile b/Makefile index 72f8071..0d0c8e0 100644 --- a/Makefile +++ b/Makefile @@ -7,14 +7,12 @@ PROJDIRS := functions includes internals platform/example SRCFILES := $(shell find -L $(PROJDIRS) -type f -name "*.c") # All header files of the project 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 OBJFILES := $(patsubst %.c,%.o,$(SRCFILES)) # All test drivers (.t) TSTFILES := $(patsubst %.c,%_t,$(SRCFILES)) # All regression test drivers (.r) -REGFILES := $(filter-out $(patsubst %,functions/_PDCLIB/%_r,$(INTFILES)),$(patsubst %.c,%_r,$(SRCFILES))) +REGFILES := $(patsubst %.c,%_r,$(SRCFILES)) # All library dependency files (.d) DEPFILES := $(patsubst %.c,%.d,$(SRCFILES)) # All test driver dependency files (_t.d)