Closed tseemann closed 6 years ago
cp $(PROGS) $(BIN) fails if $(BIN) does not exist yet. Maybe use install or add mkdir -p $(BIN) before the copy?
cp $(PROGS) $(BIN)
$(BIN)
install
mkdir -p $(BIN)
cp $(PROGS) $(BIN)
fails if$(BIN)
does not exist yet. Maybe useinstall
or addmkdir -p $(BIN)
before the copy?