Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question

11 Answers

up vote 39 down vote accepted

just use this:

mkdir -p $(OBJDIR)

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

share|improve this answer
13  
"Generally, stick to the widely-supported (usually posix-specified) options and features of these programs. For example, don't use ‘mkdir -p’, convenient as it may be, because a few systems don't support it at all and with others, it is not safe for parallel execution. " gnu.org/s/hello/manual/make/Utilities-in-Makefiles.html – greg.kindel Dec 19 '11 at 17:28

Looking at the official make documentation, here is a good way to do it:

OBJDIR := objdir
OBJS := $(addprefix $(OBJDIR)/,foo.o bar.o baz.o)

$(OBJDIR)/%.o : %.c
    $(COMPILE.c) $(OUTPUT_OPTION) $<

all: $(OBJS)

$(OBJS): | $(OBJDIR)

$(OBJDIR):
    mkdir -p $(OBJDIR)

You should see here the usage of the | pipe operator, defining an order only prerequisite. Meaning that the $(OBJDIR) target should be existent (instead of more recent) in order to build the current target.

Note that I used mkdir -p. The -p flag was added compared to the example of the docs. See other answers for another alternative.

share|improve this answer
This is definitely the official way to this problem. – lcltj Nov 12 '11 at 20:50
@CraigMcQueen: I truly meant "the $(OBJDIR) target should be existent". Make checks for file presence (and timestamps) to decide if it need to build the target. Hence here, if $(OBJDIR) is absent it will build it, so that it is existent in order to build the current target $(OBJS), that will be created inside. – TeKa Jul 3 '12 at 14:37
Sure, you are right. My apologies. – Craig McQueen Jul 3 '12 at 23:20

You can use the test command:

test -d $(OBJDIR) || mkdir $(OBJDIR)
share|improve this answer
1  
This is the preferred way if you need your makefiles to work in both Windows (with gnuwin32 and PowerShell) and POSIX-compliant OS's. – Kris Hardy Jan 6 '12 at 18:56

Here is a trick I use with GNU make for creating compiler-output directories. First define this rule:

  %/.d:
          mkdir -p $(@D)
          touch $@

Then make all files that go into the directory dependent on the .d file in that directory:

 obj/%.o: %.c obj/.d
    $(CC) $(CFLAGS) -c -o $@ $<

Note use of $< instead of $^.

Finally prevent the .d files from being removed automatically:

 .PRECIOUS: %/.d

Skipping the .d file, and depending directly on the directory, will not work, as the directory modification time is updated every time a file is written in that directory, which would force rebuild at every invocation of make.

share|improve this answer
Ah, thanks, I was trying to get something like this to work. I don't want "test -d foo || mkdir foo" on several goals, since then using "make -j2" will test them at the same time, both tests giving false, and then two processes will try to mkdir, the last of them failing. – unhammer Sep 19 '10 at 18:32

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
share|improve this answer
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

Inside your makefile:

target:
    if test -d dir; then echo "hello world!"; else mkdir dir; fi
share|improve this answer
ifeq "$(wildcard $(MY_DIRNAME) )" ""
  -mkdir $(MY_DIRNAME)
endif
share|improve this answer

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

share|improve this answer
$(OBJDIR):
    mkdir $@

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

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

$(OBJDIRS):
    mkdir $@

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

share|improve this answer

if not exist "$(OBJDIR)" mkdir $(OBJDIR)

share|improve this answer

It works under mingw32/msys/cygwin/linux

ifeq "$(wildcard .dep)" ""
-include $(shell mkdir .dep) $(wildcard .dep/*)
endif
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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