diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-12 21:16:35 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-12 21:16:35 +0200 |
commit | 1b50a6a24e691009590bf9dd7a4b6d2616c0a95b (patch) | |
tree | 55227d7cf7d7009c55c8cbfdf583556e7614c6ff | |
parent | cmake: don't install() valgrind.sh (diff) | |
download | cimple-1b50a6a24e691009590bf9dd7a4b6d2616c0a95b.tar.gz cimple-1b50a6a24e691009590bf9dd7a4b6d2616c0a95b.zip |
.build/ -> build/
Diffstat (limited to '')
-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 |