diff options
author | yeeeargh <sebatian@hauser.tv> | 2013-07-03 13:04:33 +0200 |
---|---|---|
committer | yeeeargh <sebatian@hauser.tv> | 2013-07-03 13:04:33 +0200 |
commit | e0cb9cf30bd9d326bc379bcca6ec44e86ca7c283 (patch) | |
tree | 9de7bbdb685e769ca89c7030adc428f7a4425a9f /keyboard/hid_liber/Makefile.lufa | |
parent | 681e0194501aba4e6234f478d2c96d428b1223b5 (diff) |
Added standard layouts for ANSI and ISO. Moved the initial layout from alaricljs to a seperate layout file. If no layout gets defined ANSI is used as a default.
Added a README.md with links to the deskthority wikipages for this project and some build instructions.
Diffstat (limited to 'keyboard/hid_liber/Makefile.lufa')
-rw-r--r-- | keyboard/hid_liber/Makefile.lufa | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/keyboard/hid_liber/Makefile.lufa b/keyboard/hid_liber/Makefile.lufa index 39a4d1e0f6..c99d1a32f6 100644 --- a/keyboard/hid_liber/Makefile.lufa +++ b/keyboard/hid_liber/Makefile.lufa @@ -125,5 +125,14 @@ include $(TOP_DIR)/protocol/lufa.mk include $(TOP_DIR)/common.mk include $(TOP_DIR)/rules.mk -custom: OPT_DEFS += -DKEYMAP_CUSTOM +ansi: OPT_DEFS += -DLAYOUT_ANSI +ansi: all + +iso: OPT_DEFS += -DLAYOUT_ISO +iso: all + +custom: OPT_DEFS += -DLAYOUT_CUSTOM custom: all + +alaricljs: OPT_DEFS += -DLAYOUT_ALARICLJS +alaricljs: all |