Skip to content

Commit

Permalink
update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tryingsomestuff committed Apr 19, 2020
1 parent 74954f9 commit 57bf4d4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
.PHONY: build
.PHONY: build release

.DEFAULT_GOAL:= build

ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))

build:
config:
chmod +x $(ROOT_DIR)/Tools/*.sh

fathom:
rm -rf $(ROOT_DIR)/Fathom
git clone https://github.com/jdart1/Fathom $(ROOT_DIR)/Fathom
$(ROOT_DIR)/Tools/build.sh

prerequisites: build
release: config fathom
$(ROOT_DIR)/Tools/release.sh

build: config fathom
$(ROOT_DIR)/Tools/build.sh

target: prerequisites
2 changes: 1 addition & 1 deletion Source/definition.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ typedef uint64_t u_int64_t;
#include <unistd.h>
#endif

const std::string MinicVersion = "dev";
const std::string MinicVersion = "2.11";

// *** options
#define WITH_UCI
Expand Down

0 comments on commit 57bf4d4

Please sign in to comment.