2012-06-28 14:05:21 +00:00
|
|
|
COMMON_DIR = common
|
|
|
|
SRC += $(COMMON_DIR)/host.c \
|
|
|
|
$(COMMON_DIR)/keyboard.c \
|
2012-12-15 17:32:07 +00:00
|
|
|
$(COMMON_DIR)/action.c \
|
2013-03-28 15:56:34 +00:00
|
|
|
$(COMMON_DIR)/action_tapping.c \
|
2013-02-04 13:53:45 +00:00
|
|
|
$(COMMON_DIR)/action_macro.c \
|
2013-04-02 08:44:24 +00:00
|
|
|
$(COMMON_DIR)/action_layer.c \
|
2013-10-03 18:30:09 +00:00
|
|
|
$(COMMON_DIR)/action_util.c \
|
2013-01-28 05:06:42 +00:00
|
|
|
$(COMMON_DIR)/keymap.c \
|
2012-06-28 14:05:21 +00:00
|
|
|
$(COMMON_DIR)/print.c \
|
2014-09-22 01:42:20 +00:00
|
|
|
$(COMMON_DIR)/debug.c \
|
2014-06-17 13:41:14 +00:00
|
|
|
$(COMMON_DIR)/util.c \
|
|
|
|
$(COMMON_DIR)/avr/suspend.c \
|
2014-06-16 15:57:59 +00:00
|
|
|
$(COMMON_DIR)/avr/xprintf.S \
|
2014-06-17 13:41:14 +00:00
|
|
|
$(COMMON_DIR)/avr/timer.c \
|
|
|
|
$(COMMON_DIR)/avr/bootloader.c
|
2011-01-04 15:04:25 +00:00
|
|
|
|
2011-02-12 15:15:51 +00:00
|
|
|
|
2011-01-04 15:04:25 +00:00
|
|
|
# Option modules
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(BOOTMAGIC_ENABLE)), yes)
|
2013-03-11 06:28:14 +00:00
|
|
|
SRC += $(COMMON_DIR)/bootmagic.c
|
2014-06-17 13:41:14 +00:00
|
|
|
SRC += $(COMMON_DIR)/avr/eeconfig.c
|
2013-03-11 06:28:14 +00:00
|
|
|
OPT_DEFS += -DBOOTMAGIC_ENABLE
|
2016-04-16 22:51:58 +00:00
|
|
|
else
|
|
|
|
SRC += $(COMMON_DIR)/magic.c
|
|
|
|
SRC += $(COMMON_DIR)/avr/eeconfig.c
|
2013-03-11 06:28:14 +00:00
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(MOUSEKEY_ENABLE)), yes)
|
2012-06-28 14:05:21 +00:00
|
|
|
SRC += $(COMMON_DIR)/mousekey.c
|
2011-02-12 15:15:51 +00:00
|
|
|
OPT_DEFS += -DMOUSEKEY_ENABLE
|
2013-11-01 18:10:49 +00:00
|
|
|
OPT_DEFS += -DMOUSE_ENABLE
|
2011-01-02 14:52:13 +00:00
|
|
|
endif
|
2011-02-08 15:03:58 +00:00
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(EXTRAKEY_ENABLE)), yes)
|
2011-09-17 13:39:50 +00:00
|
|
|
OPT_DEFS += -DEXTRAKEY_ENABLE
|
2011-02-12 15:15:51 +00:00
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(CONSOLE_ENABLE)), yes)
|
2012-07-13 17:47:29 +00:00
|
|
|
OPT_DEFS += -DCONSOLE_ENABLE
|
2013-03-19 05:08:40 +00:00
|
|
|
else
|
|
|
|
OPT_DEFS += -DNO_PRINT
|
|
|
|
OPT_DEFS += -DNO_DEBUG
|
2012-07-13 17:47:29 +00:00
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(COMMAND_ENABLE)), yes)
|
2013-03-19 07:05:53 +00:00
|
|
|
SRC += $(COMMON_DIR)/command.c
|
|
|
|
OPT_DEFS += -DCOMMAND_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(NKRO_ENABLE)), yes)
|
2011-09-17 13:39:50 +00:00
|
|
|
OPT_DEFS += -DNKRO_ENABLE
|
2011-02-12 15:15:51 +00:00
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(MIDI_ENABLE)), yes)
|
2015-08-21 14:46:53 +00:00
|
|
|
OPT_DEFS += -DMIDI_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(AUDIO_ENABLE)), yes)
|
2016-01-20 05:06:52 +00:00
|
|
|
OPT_DEFS += -DAUDIO_ENABLE
|
|
|
|
endif
|
2015-10-27 16:42:30 +00:00
|
|
|
|
2016-05-19 03:47:16 +00:00
|
|
|
ifeq ($(strip $(UNICODE_ENABLE)), yes)
|
|
|
|
OPT_DEFS += -DUNICODE_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(USB_6KRO_ENABLE)), yes)
|
2014-05-13 05:57:13 +00:00
|
|
|
OPT_DEFS += -DUSB_6KRO_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(SLEEP_LED_ENABLE)), yes)
|
2013-03-15 13:22:57 +00:00
|
|
|
SRC += $(COMMON_DIR)/sleep_led.c
|
|
|
|
OPT_DEFS += -DSLEEP_LED_ENABLE
|
2013-03-24 16:46:32 +00:00
|
|
|
OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
|
2013-03-15 13:22:57 +00:00
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(BACKLIGHT_ENABLE)), yes)
|
2013-05-30 18:24:39 +00:00
|
|
|
SRC += $(COMMON_DIR)/backlight.c
|
2016-04-15 03:53:35 +00:00
|
|
|
SRC += $(COMMON_DIR)/avr/eeconfig.c
|
2013-05-30 18:24:39 +00:00
|
|
|
OPT_DEFS += -DBACKLIGHT_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(BLUETOOTH_ENABLE)), yes)
|
2015-10-22 17:37:45 +00:00
|
|
|
OPT_DEFS += -DBLUETOOTH_ENABLE
|
|
|
|
endif
|
|
|
|
|
2016-04-15 04:26:22 +00:00
|
|
|
ifeq ($(strip $(KEYMAP_SECTION_ENABLE)), yes)
|
2013-09-18 15:51:44 +00:00
|
|
|
OPT_DEFS += -DKEYMAP_SECTION_ENABLE
|
2015-07-11 20:44:10 +00: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 05:01:47 +00:00
|
|
|
endif
|
2013-03-15 13:22:57 +00:00
|
|
|
|
2013-09-11 04:44:54 +00:00
|
|
|
# Version string
|
2013-10-03 04:27:04 +00:00
|
|
|
OPT_DEFS += -DVERSION=$(shell (git describe --always --dirty || echo 'unknown') 2> /dev/null)
|
2013-09-11 04:44:54 +00:00
|
|
|
|
|
|
|
|
2011-09-17 13:39:50 +00: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 17:31:31 +00:00
|
|
|
VPATH += $(TMK_PATH)/$(COMMON_DIR)
|