>>>>> "Lars" == Lars J Aas <[EMAIL PROTECTED]> writes:

Lars> BUILT_SOURCES = header.h
Lars> # build $(BUILT_SOURCES) before entering subdirs
Lars> Makefile: $(BUILT_SOURCES)

Note this will only work with GNU make and is relatively bad besides.
Eg, try `make clean' and watch it rebuild the header first...

With the cvs automake you can reorder the build so that `.' is built
first:

    SUBDIRS = . subdir

This will have the desired effect.

Tom

Reply via email to