diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-08-08 11:06:47 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-08-20 03:56:31 +0300 |
commit | cc2df445ab3b0fd3998de7861b1c9ba0ad64aa8a (patch) | |
tree | 15731ec48f3bfd1ba99a2e954f994cfdb7ceed8e /build_keyboard.mk | |
parent | 67b294ca66fd9da341ab93019a380d91ac589c96 (diff) | |
download | qmk_firmware-cc2df445ab3b0fd3998de7861b1c9ba0ad64aa8a.tar.gz qmk_firmware-cc2df445ab3b0fd3998de7861b1c9ba0ad64aa8a.zip |
Remove unneded code from tmk_core/rules.mk
Diffstat (limited to 'build_keyboard.mk')
-rw-r--r-- | build_keyboard.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/build_keyboard.mk b/build_keyboard.mk index b0cb22e6ac..7493c13285 100644 --- a/build_keyboard.mk +++ b/build_keyboard.mk @@ -4,6 +4,8 @@ endif .DEFAULT_GOAL := all +include message.mk + # Directory common source filess exist TOP_DIR = . @@ -68,7 +70,7 @@ BUILD_DIR = $(TOP_DIR)/.build # Object files directory # To put object files in current directory, use a dot (.), do NOT make # this an empty or blank macro! -OBJDIR = $(BUILD_DIR)/obj_$(TARGET) +OBJDIR := $(BUILD_DIR)/obj_$(TARGET) ifneq ("$(wildcard $(KEYMAP_PATH)/config.h)","") |