From acc83c676a702a158ceefc6915e8607868f9ffe2 Mon Sep 17 00:00:00 2001 From: Martin Lenders Date: Wed, 31 Jul 2013 17:16:05 +0200 Subject: [PATCH] Fix mkdir from 065566c --- Makefile.include | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.include b/Makefile.include index 807a008db..5186db8ec 100644 --- a/Makefile.include +++ b/Makefile.include @@ -73,7 +73,7 @@ ${PROJBINDIR}/$(PROJECT).a: $(OBJ) ${PROJBINDIR}/%.o: %.c @echo; echo "Compiling.... $*.c"; echo - @test -d $(PROJBINDIR) || mkdir $(PROJBINDIR) + @test -d $(PROJBINDIR) || mkdir -p $(PROJBINDIR) $(CC) $(CFLAGS) $(INCLUDES) -c $*.c -o bin/$*.o clean: