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