Skip to content
Snippets Groups Projects
Commit acc83c67 authored by Martine Lenders's avatar Martine Lenders
Browse files

Fix mkdir from 065566cd

parent 065566cd
Branches
No related tags found
No related merge requests found
...@@ -73,7 +73,7 @@ ${PROJBINDIR}/$(PROJECT).a: $(OBJ) ...@@ -73,7 +73,7 @@ ${PROJBINDIR}/$(PROJECT).a: $(OBJ)
${PROJBINDIR}/%.o: %.c ${PROJBINDIR}/%.o: %.c
@echo; echo "Compiling.... $*.c"; echo @echo; echo "Compiling.... $*.c"; echo
@test -d $(PROJBINDIR) || mkdir $(PROJBINDIR) @test -d $(PROJBINDIR) || mkdir -p $(PROJBINDIR)
$(CC) $(CFLAGS) $(INCLUDES) -c $*.c -o bin/$*.o $(CC) $(CFLAGS) $(INCLUDES) -c $*.c -o bin/$*.o
clean: clean:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment