T
TCM
I need to run multiple C files one after the other.
My makefile currently looks like this:
BINS: a.out b.out c.out d.out
run-all: $(BINS)
./(Need each file here, sequentially)
I can't find any static pattern match to have them all run one after
the other. $? returns all them, I need to parse through them one at a
time.
Is this possible?
Thanks for any response.
My makefile currently looks like this:
BINS: a.out b.out c.out d.out
run-all: $(BINS)
./(Need each file here, sequentially)
I can't find any static pattern match to have them all run one after
the other. $? returns all them, I need to parse through them one at a
time.
Is this possible?
Thanks for any response.