diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-08-21 17:14:38 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-08-27 21:57:49 +0300 |
commit | 27a673f5cf75747fe73641059aae60e9b53a1c78 (patch) | |
tree | faf15b5c6055568689534478f5306cd4fe4be459 /common.mk | |
parent | 6d7cd639a5e4503f00162c7cfa4bc7302b82c71c (diff) | |
download | qmk_firmware-27a673f5cf75747fe73641059aae60e9b53a1c78.tar.gz |
The makefile actually calls build_test
Diffstat (limited to 'common.mk')
-rw-r--r-- | common.mk | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/common.mk b/common.mk new file mode 100644 index 000000000..689fdf5a5 --- /dev/null +++ b/common.mk @@ -0,0 +1,12 @@ +include message.mk + +# Directory common source files exist +TOP_DIR = . +TMK_DIR = tmk_core +TMK_PATH = $(TOP_DIR)/$(TMK_DIR) +LIB_PATH = $(TOP_DIR)/lib + +QUANTUM_DIR = quantum +QUANTUM_PATH = $(TOP_DIR)/$(QUANTUM_DIR) + +BUILD_DIR := $(TOP_DIR)/.build
\ No newline at end of file |