Don't error out if build/ directory already exists.

This commit is contained in:
Paul Sokolovsky 2013-12-29 20:12:33 +02:00
parent 44d0f3cfa2
commit 729fd12fbf
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ $(PROG): $(BUILD) $(OBJ)
size $(PROG)
$(BUILD):
mkdir $@
mkdir -p $@
$(BUILD)/%.o: %.c
$(CC) $(CFLAGS) -c -o $@ $<