2012-06-28 23:05:21 +09:00
|
|
|
COMMON_DIR = common
|
|
|
|
SRC += $(COMMON_DIR)/host.c \
|
|
|
|
$(COMMON_DIR)/keyboard.c \
|
2012-12-16 02:32:07 +09:00
|
|
|
$(COMMON_DIR)/action.c \
|
2013-03-29 00:56:34 +09:00
|
|
|
$(COMMON_DIR)/action_tapping.c \
|
2013-02-04 22:53:45 +09:00
|
|
|
$(COMMON_DIR)/action_macro.c \
|
2013-04-02 17:44:24 +09:00
|
|
|
$(COMMON_DIR)/action_layer.c \
|
2013-10-04 03:30:09 +09:00
|
|
|
$(COMMON_DIR)/action_util.c \
|
2013-01-28 14:06:42 +09:00
|
|
|
$(COMMON_DIR)/keymap.c \
|
2012-06-28 23:05:21 +09:00
|
|
|
$(COMMON_DIR)/print.c \
|
2014-09-22 10:42:20 +09:00
|
|
|
$(COMMON_DIR)/debug.c \
|
2014-06-17 22:41:14 +09:00
|
|
|
$(COMMON_DIR)/util.c \
|
|
|
|
$(COMMON_DIR)/avr/suspend.c \
|
2014-06-17 00:57:59 +09:00
|
|
|
$(COMMON_DIR)/avr/xprintf.S \
|
2014-06-17 22:41:14 +09:00
|
|
|
$(COMMON_DIR)/avr/timer.c \
|
|
|
|
$(COMMON_DIR)/avr/bootloader.c
|
2011-01-05 00:04:25 +09:00
|
|
|
|
2011-02-13 00:15:51 +09:00
|
|
|
|
2011-01-05 00:04:25 +09:00
|
|
|
# Option modules
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(BOOTMAGIC_ENABLE)), yes)
|
2013-03-11 15:28:14 +09:00
|
|
|
SRC += $(COMMON_DIR)/bootmagic.c
|
2014-06-17 22:41:14 +09:00
|
|
|
SRC += $(COMMON_DIR)/avr/eeconfig.c
|
2013-03-11 15:28:14 +09:00
|
|
|
OPT_DEFS += -DBOOTMAGIC_ENABLE
|
2016-04-16 18:51:58 -04:00
|
|
|
else
|
|
|
|
SRC += $(COMMON_DIR)/magic.c
|
|
|
|
SRC += $(COMMON_DIR)/avr/eeconfig.c
|
2013-03-11 15:28:14 +09:00
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
|
2012-06-28 23:05:21 +09:00
|
|
|
SRC += $(COMMON_DIR)/mousekey.c
|
2011-02-13 00:15:51 +09:00
|
|
|
OPT_DEFS += -DMOUSEKEY_ENABLE
|
2013-11-02 03:10:49 +09:00
|
|
|
OPT_DEFS += -DMOUSE_ENABLE
|
2011-01-02 23:52:13 +09:00
|
|
|
endif
|
2011-02-09 00:03:58 +09:00
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(EXTRAKEY_ENABLE)), yes)
|
2011-09-17 22:39:50 +09:00
|
|
|
OPT_DEFS += -DEXTRAKEY_ENABLE
|
2011-02-13 00:15:51 +09:00
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(CONSOLE_ENABLE)), yes)
|
2012-07-14 02:47:29 +09:00
|
|
|
OPT_DEFS += -DCONSOLE_ENABLE
|
2013-03-19 14:08:40 +09:00
|
|
|
else
|
|
|
|
OPT_DEFS += -DNO_PRINT
|
|
|
|
OPT_DEFS += -DNO_DEBUG
|
2012-07-14 02:47:29 +09:00
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(COMMAND_ENABLE)), yes)
|
2013-03-19 16:05:53 +09:00
|
|
|
SRC += $(COMMON_DIR)/command.c
|
|
|
|
OPT_DEFS += -DCOMMAND_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(NKRO_ENABLE)), yes)
|
2011-09-17 22:39:50 +09:00
|
|
|
OPT_DEFS += -DNKRO_ENABLE
|
2011-02-13 00:15:51 +09:00
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(MIDI_ENABLE)), yes)
|
2015-08-21 10:46:53 -04:00
|
|
|
OPT_DEFS += -DMIDI_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(AUDIO_ENABLE)), yes)
|
2016-01-20 00:06:52 -05:00
|
|
|
OPT_DEFS += -DAUDIO_ENABLE
|
|
|
|
endif
|
2015-10-27 12:42:30 -04:00
|
|
|
|
2016-05-18 23:47:16 -04:00
|
|
|
ifeq ($(strip $(UNICODE_ENABLE)), yes)
|
|
|
|
OPT_DEFS += -DUNICODE_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
|
2014-05-13 14:57:13 +09:00
|
|
|
OPT_DEFS += -DUSB_6KRO_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(SLEEP_LED_ENABLE)), yes)
|
2013-03-15 22:22:57 +09:00
|
|
|
SRC += $(COMMON_DIR)/sleep_led.c
|
|
|
|
OPT_DEFS += -DSLEEP_LED_ENABLE
|
2013-03-25 01:46:32 +09:00
|
|
|
OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
|
2013-03-15 22:22:57 +09:00
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
|
2013-05-30 20:24:39 +02:00
|
|
|
SRC += $(COMMON_DIR)/backlight.c
|
2016-04-14 23:53:35 -04:00
|
|
|
SRC += $(COMMON_DIR)/avr/eeconfig.c
|
2013-05-30 20:24:39 +02:00
|
|
|
OPT_DEFS += -DBACKLIGHT_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
|
2015-10-22 13:37:45 -04:00
|
|
|
OPT_DEFS += -DBLUETOOTH_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 00:26:22 -04:00
|
|
|
ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes)
|
2013-09-19 00:51:44 +09:00
|
|
|
OPT_DEFS += -DKEYMAP_SECTION_ENABLE
|
2015-07-12 05:44:10 +09:00
|
|
|
|
|
|
|
ifeq ($(strip $(MCU)),atmega32u2)
|
|
|
|
EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr35.x
|
|
|
|
else ifeq ($(strip $(MCU)),atmega32u4)
|
|
|
|
EXTRALDFLAGS = -Wl,-L$(TMK_DIR),-Tldscript_keymap_avr5.x
|
|
|
|
else
|
|
|
|
EXTRALDFLAGS = $(error no ldscript for keymap section)
|
|
|
|
endif
|
2013-09-11 14:01:47 +09:00
|
|
|
endif
|
2013-03-15 22:22:57 +09:00
|
|
|
|
2013-09-11 13:44:54 +09:00
|
|
|
# Version string
|
2013-10-03 13:27:04 +09:00
|
|
|
OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
|
2013-09-11 13:44:54 +09:00
|
|
|
|
|
|
|
|
2011-09-17 22:39:50 +09:00
|
|
|
# Search Path
|
Makefile redo & other features (#395)
* .build containment implemented
* no destructive variable setting - builds in either folder
* make from 3 places
* cleans before each build
* make from root with keyboard=keyboard, keymap=keymap
* make from keyboard/keyboard with keymap=keymap
* make from keymaps/keymap
* only implemented on planck
* adds color diag to avr-gcc
* makefiles for all plancks, clean-up
* quick build-all makefile for plancks
* reformatting of make output (colors)
* color toggle, tmk path corrections
* correct if statement for color
* move config.h to main makefile, updates preonic, atomic
* format update, all keyboards targets
* makefile optional for build all target, alps and arrow_pad updated
* alps updated
* make planck default, trying out travis recipe for all-keyboards
* all-keymaps target, different travis recipe
* updates alps64
* updates keyboards to new format
* updates clue* projects
* all projects updated, specialise EZ .hex, let .hex through
* updates travis
* automatically find root, keyboard, keymap
* silent echo, cleaned-up mass make output
* updates all keyboards' .hex files except EZ
* Rename Bantam44.c to bantam44.c
* Rename Bantam44.h to bantam44.h
* nananana
* adds six key keyboard
* does same to ez as rest
* updates send_string example
* brings ergodox_ez up to date
* updates template/new project script
* adds sixkeyboard
* adds readme for sixkeyboard
* adds sixkeyboard to travis
* filenames, gitignore mess
* define clock prescaler stuff manually
* make quick, size test example
* documentation and dfu-no-build
2016-06-11 13:31:31 -04:00
|
|
|
VPATH += $(TMK_PATH)/$(COMMON_DIR)
|