vote up 0 vote down star

Is it possible to have make create a temp directory before it executes the first target? Maybe using some hack, some additional target etc.?

All commands in the Makefile would be able to refer to the automatically created directory as $TMPDIR, and the directory would be automatically removed when the make command ends.

flag

61% accept rate

2 Answers

vote up 2 vote down

I seem to recall being able to call make recursively, something along the lines of:

toplevel:
    -mkdir $(TEMPDIR)
    $(MAKE) $(MLAGS) all
    -rm -rf $(TEMPDIR)

all: ... rest of stuff.

I've done similar tricks for making in subdirectories:

all:
    @for i in $(SUBDIRS); do \
        echo "make all in $$i..."; \
        (cd $$i; $(MAKE) $(MLAGS) all); \
    done

Just checked it and this works fine:

$ cat Makefile
all:
    -mkdir tempdir
    -echo hello >tempdir/hello
    -echo goodbye >tempdir/goodbye
    $(MAKE) $(MFLAGS) old_all
    -rm -rf tempdir

old_all:
    ls -al tempdir

$ make all
mkdir tempdir
echo hello >tempdir/hello
echo goodbye >tempdir/goodbye
make  old_all
make[1]: Entering directory '/home/pax'
ls -al tempdir
total 2
drwxr-xr-x+ 2 allachan None 0 Feb 26 15:00 .
drwxrwxrwx+ 4 allachan None 0 Feb 26 15:00 ..
-rw-r--r--  1 allachan None 8 Feb 26 15:00 goodbye
-rw-r--r--  1 allachan None 6 Feb 26 15:00 hello
make[1]: Leaving directory '/home/pax'
rm -rf tempdir

$ ls -al tempdir
ls: cannot access tempdir: No such file or directory
link|flag
That works, but of course only if the user says 'make' without specifying a target. So 'make all' won't work etc. – dehmann Feb 26 at 6:03
I expect the user to know what they're doing :-) so they would use "make" or "make toplevel". In any case, you can change "all" to "old_all" and "toplevel" to "all" if you want that behavior. – paxdiablo Feb 26 at 6:05
Updated so that you can "make all" which is also the default rule. – paxdiablo Feb 26 at 6:07
vote up 1 vote down

With GNU make, at least,

TMPDIR := $(shell mktemp -d)

will get you your temporary directory. I can't come up with a good way to clean it up at the end, other than the obvious rmdir "$(TMPDIR)" as part of the all target.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.