diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-08-07 18:38:03 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-08-20 03:56:23 +0300 |
commit | 051017c3129a17a1f4c610f19067c60bf0a49da9 (patch) | |
tree | b19608cd10458ac2083f8f007b1b74ecdfe103a6 /keyboards/planck/rev3 | |
parent | c83af5451349e6160a2ee220e7b45bb974be5c64 (diff) |
Split subproject make files into Makefile and rules.mk
Diffstat (limited to 'keyboards/planck/rev3')
-rw-r--r-- | keyboards/planck/rev3/Makefile | 4 | ||||
-rw-r--r-- | keyboards/planck/rev3/rules.mk | 5 |
2 files changed, 6 insertions, 3 deletions
diff --git a/keyboards/planck/rev3/Makefile b/keyboards/planck/rev3/Makefile index 3ed1445e43..191c6bb664 100644 --- a/keyboards/planck/rev3/Makefile +++ b/keyboards/planck/rev3/Makefile @@ -1,5 +1,3 @@ -AUDIO_ENABLE ?= no # Audio output on port C6 - -ifndef QUANTUM_DIR +ifndef MAKEFILE_INCLUDED include ../../../Makefile endif
\ No newline at end of file diff --git a/keyboards/planck/rev3/rules.mk b/keyboards/planck/rev3/rules.mk new file mode 100644 index 0000000000..3ed1445e43 --- /dev/null +++ b/keyboards/planck/rev3/rules.mk @@ -0,0 +1,5 @@ +AUDIO_ENABLE ?= no # Audio output on port C6 + +ifndef QUANTUM_DIR + include ../../../Makefile +endif
\ No newline at end of file |