diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.md | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -1,3 +1,3 @@ -/.build/ +/build/ *.pyc @@ -21,7 +21,7 @@ endif endef src_dir := $(abspath .) -build_dir := $(src_dir)/.build +build_dir := $(src_dir)/build cmake_dir := $(build_dir)/cmake install_dir := $(build_dir)/install @@ -11,7 +11,7 @@ Development Build using CMake. Depends on libgit2 and SQLite. -There's a Makefile with useful shortcuts to build the project in the .build/ +There's a Makefile with useful shortcuts to build the project in the "build/" directory: make build |