diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-07-30 23:41:26 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-07-31 13:42:05 +0300 |
commit | 97817a773eb667045144ac820df673ed8d3471a0 (patch) | |
tree | 0f85e274fc0e8906f05f869ee71b95eb2426ea91 /keyboards | |
parent | 84bfb195545b0ba527f34c386d15d6f732a28de7 (diff) |
Generate version information to version.h
So that only the files that really needs a version are recompiled.
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/ergodox/keymaps/algernon/keymap.c | 1 | ||||
-rw-r--r-- | keyboards/ergodox/keymaps/default/keymap.c | 1 | ||||
-rw-r--r-- | keyboards/ergodox/keymaps/josh/keymap.c | 1 | ||||
-rw-r--r-- | keyboards/planck/keymaps/cbbrowne/keymap.c | 1 | ||||
-rw-r--r-- | keyboards/planck/keymaps/experimental/keymap.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/keyboards/ergodox/keymaps/algernon/keymap.c b/keyboards/ergodox/keymaps/algernon/keymap.c index 6a14ef4676..c4de53da27 100644 --- a/keyboards/ergodox/keymaps/algernon/keymap.c +++ b/keyboards/ergodox/keymaps/algernon/keymap.c @@ -12,6 +12,7 @@ #include "keymap_plover.h"
#include "eeconfig.h"
#include "wait.h"
+#include "version.h" /* Layers */
diff --git a/keyboards/ergodox/keymaps/default/keymap.c b/keyboards/ergodox/keymaps/default/keymap.c index f1a83f4e79..1b80cb3a23 100644 --- a/keyboards/ergodox/keymaps/default/keymap.c +++ b/keyboards/ergodox/keymaps/default/keymap.c @@ -1,6 +1,7 @@ #include "ergodox.h" #include "debug.h" #include "action_layer.h" +#include "version.h" #define BASE 0 // default layer #define SYMB 1 // symbols diff --git a/keyboards/ergodox/keymaps/josh/keymap.c b/keyboards/ergodox/keymaps/josh/keymap.c index 488b214273..b5463873a9 100644 --- a/keyboards/ergodox/keymaps/josh/keymap.c +++ b/keyboards/ergodox/keymaps/josh/keymap.c @@ -1,6 +1,7 @@ #include "ergodox.h" #include "debug.h" #include "action_layer.h" +#include "version.h" #define BASE 0 // default layer #define SYMB 1 // symbols diff --git a/keyboards/planck/keymaps/cbbrowne/keymap.c b/keyboards/planck/keymaps/cbbrowne/keymap.c index 14a5be1708..70eaefb7be 100644 --- a/keyboards/planck/keymaps/cbbrowne/keymap.c +++ b/keyboards/planck/keymaps/cbbrowne/keymap.c @@ -4,6 +4,7 @@ #endif #include "config.h" #include "quantum.h" +#include "version.h" /* Each layer is given a name to aid in readability, which is then used in the keymap matrix below. The underscores do not denote diff --git a/keyboards/planck/keymaps/experimental/keymap.c b/keyboards/planck/keymaps/experimental/keymap.c index d9303fcae5..2c12700944 100644 --- a/keyboards/planck/keymaps/experimental/keymap.c +++ b/keyboards/planck/keymaps/experimental/keymap.c @@ -8,6 +8,7 @@ #endif #include "eeconfig.h" +#include "version.h" extern keymap_config_t keymap_config; |