X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=Makefile;h=e58d72aa4e4ae2de67abdf9845f3c0bef9d7c632;hb=d9cd7611ffc62f44afeddf2923ec21f0d32dc604;hp=802e28e3272c6637a5c8a079a304769be6a435f7;hpb=135293874edb88dbc8baf3639c5c322b7ec743fb;p=pdclib.old 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)