Mats Lidell <Mats.Lidell(a)contactor.se> writes:
When it comes to the packages I fail to find any decent way to build
them all from the top. The best I have found is to go around in leaf
directories and "make" like this:
"make STAGING=/... bindist"
Now this is not what you want to do after a cvs update. I would want
to be able to build it all from the top.
You are supposed to be able to just type "make" in the toplevel directory.
From the toplevel Makefile
all:
for dir in $(SUBDIRS); do \
$(MAKE) $(MFLAGS) -C $${dir} autoloads; \
done
for dir in $(SUBDIRS); do \
$(MAKE) $(MFLAGS) -C $${dir} bytecompile; \
done
Jan