1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Fix mkdir from 065566c

This commit is contained in:
Martin Lenders 2013-07-31 17:16:05 +02:00
parent 065566cd04
commit acc83c676a

View File

@ -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: