vote up 4 vote down star
1

I need to generate a directory in my makefile and I would like to not get the "directory already exists error" over and over even though I can easily ignore it.

I mainly use mingw/msys but would like something that works across other shells/systems too.

I tried this but it didn't work, any ideas?

ifeq (,$(findstring $(OBJDIR),$(wildcard $(OBJDIR) )))
-mkdir $(OBJDIR)
endif
flag

7 Answers

vote up 6 vote down check

just use this:

mkdir -p $(OBJDIR)
link|flag
vote up 0 vote down
$(OBJDIR):
    mkdir $@

Which also works for multiple directories, e.g..

OBJDIRS := $(sort $(dir $(OBJECTS)))

$(OBJDIRS):
    mkdir $@

Adding $(OBJDIR) as the first target works well.

link|flag
vote up 0 vote down
ifeq "$(wildcard $(MY_DIRNAME) )" ""
  -mkdir $(MY_DIRNAME)
endif
link|flag
vote up 2 vote down

Note that the -p option to mkdir is often not available on non-GNU systems.

link|flag
vote up 1 vote down

The -p option to mkdir prevents the error message if the directory exists.

Alternatively, you can use the test command:

test -d $(OBJDIR) || mkdir $(OBJDIR)
link|flag
vote up 1 vote down

Inside your makefile:

target:
    if test -d dir; then echo "hello world!"; else mkdir dir; fi
link|flag
vote up 3 vote down

If having the directory already exist is not a problem for you, you could just redirect stderr for that command, getting rid of the error message:

-mkdir $(OBJDIR) 2>/dev/null
link|flag
This has the advantage of working on Windows, too. Don't forget the '-' in front of the command so make doesn't bail. – Michael Burr Sep 19 '08 at 3:45

Your Answer

Get an OpenID
or

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