don't fail build if build directory exists
This commit is contained in:
parent
66f1105deb
commit
85c2515534
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ BIN = repo2html
|
|||
all: compile
|
||||
|
||||
compile:
|
||||
mkdir $(DIR_BUILD)/
|
||||
mkdir -p $(DIR_BUILD)/
|
||||
csc -O3 -static ./$(SRC) -o $(DIR_BUILD)/$(BIN)
|
||||
rm ./$(DIR_BUILD)/$(BIN).link
|
||||
@echo "Finished compiling a static binary in $(DIR_BUILD)/$(BIN)!"
|
||||
|
|
Loading…
Reference in a new issue