aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
AgeCommit message (Collapse)Author
2016-12-29Clean up the SKIP_GIT codeGravatar Fred Sundvik
2016-12-29Remove extra parenthesis from MakefileGravatar Fred Sundvik
Cygwin had trouble running the tests
2016-11-01Adding SKIP_GIT to speed up compiles.Gravatar IBNobody
2016-10-30Run each sumbmake in a separate shellGravatar Fred Sundvik
This will fix the situation where the commandline gets too long when there are many keyboards and keymaps.
2016-08-27The all target makes all keyboards and all testsGravatar Fred Sundvik
2016-08-27Support for running and cleaning all testsGravatar Fred Sundvik
2016-08-27Detect failures when running multiple testsGravatar Fred Sundvik
Also add better output.
2016-08-27Fix running multiple testsGravatar Fred Sundvik
2016-08-27Running of unit testsGravatar Fred Sundvik
But only if the compilation has succeeded
2016-08-27The makefile actually calls build_testGravatar Fred Sundvik
2016-08-27Basic framework for parsing test targetsGravatar Fred Sundvik
2016-08-24Fix slight inconsistencyGravatar Fred Sundvik
When running make from either a keyboard folder or a subproject it runs all keymaps for all subprojects and the selected subproject respectively. Without this fix, the same doesn't happen if your run make clean for example. As it would just provide you with an error message. Now this will work as expected.
2016-08-21Add longest match to the rule-checkingGravatar Fred Sundvik
This fixes cases where you have several keyboards with a common prefix, like algernon, and algernon-master
2016-08-20Comment the MakefileGravatar Fred Sundvik
Also move some messages to message.mk
2016-08-20Better format for non-silent outputGravatar Fred Sundvik
2016-08-20Continue on errorGravatar Fred Sundvik
2016-08-20Pass the target to submakeGravatar Fred Sundvik
2016-08-20Fix variable name clash with builtinGravatar Fred Sundvik
This caused the submake to be called several times, messing up the build.
2016-08-20Options for silent compilationGravatar Fred Sundvik
A single keyboard is always by default compiled in verbose mode. While multiple keyboards are compiled in silent mode. This can be overriden by the silent variable from the command line
2016-08-20Don't run builtin rules for submakeGravatar Fred Sundvik
To speed up the compilation
2016-08-20Fix running make in parallelGravatar Fred Sundvik
2016-08-20Move git submodule check and version generation to main MakefileGravatar Fred Sundvik
2016-08-20Actual compilationGravatar Fred Sundvik
2016-08-20Add color outputGravatar Fred Sundvik
2016-08-20Fix running make from various subfoldersGravatar Fred Sundvik
2016-08-20Fixed the shortcut targetsGravatar Fred Sundvik
2016-08-20Proper default goals when inside keyboard fodlersGravatar Fred Sundvik
2016-08-20Add backwards compability with makefile variablesGravatar Fred Sundvik
2016-08-20Proper handling for running make from a subproject or keymap dirGravatar Fred Sundvik
2016-08-20Support for running from keyboard directoryGravatar Fred Sundvik
2016-08-20Print error when building non-existing keyboardGravatar Fred Sundvik
2016-08-20Print error message when trying to build non-existing keymapGravatar Fred Sundvik
2016-08-20Proper parsing of keymaps inside subprojectsGravatar Fred Sundvik
2016-08-20Split keyboard makefiles into rules and MakefileGravatar Fred Sundvik
2016-08-20Add default subproject parsingGravatar Fred Sundvik
2016-08-20Slight rearrange of the Makefile for easier readabilityGravatar Fred Sundvik
2016-08-20Slight refactoring to remove some verbosityGravatar Fred Sundvik
2016-08-20Subproject parsingGravatar Fred Sundvik
Does not handle keyboards without subprojects correctly yet.
2016-08-20Proper looping for allkb and allkmGravatar Fred Sundvik
2016-08-20Refactor common rule list parsing into own functionGravatar Fred Sundvik
2016-08-20Add keymap parsingGravatar Fred Sundvik
2016-08-20Rule parsing to match kebyoardsGravatar Fred Sundvik
2016-08-20First version of rule parsingGravatar Fred Sundvik
Only handles allkb at the moment.
2016-08-20Parsing of makefile variables from starting dirGravatar Fred Sundvik
2016-08-15process_unicode: Add a way to enter unicode symbols by nameGravatar Gergely Nagy
The purpose of this change is to allow keymaps to specify a dictionary of unicode symbol name to code mappings, and let the person at the keyboard enter unicode symbols by name. This is done by having a way to trigger unicode symbol input mode, when all keys are cached until Esc, Enter or Space are pressed. Once that happens, we try to look up the symbol from our lookup table. If found, we erase back, and type the unicode magic in to get that symbol. If not found, we still erase back, start unicode input mode, and replay what the user typed in. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
2016-07-31Generate version information to version.hGravatar Fred Sundvik
So that only the files that really needs a version are recompiled.
2016-07-31Put the build output inside the root/.build directoryGravatar Fred Sundvik
2016-07-31Better "include guards" for the makefilesGravatar Fred Sundvik
Checking for ARCH is not good enough, since some subprojects define it. Ergodox Ez for example. The leads to running the make from keyboards/ergodox/ez failing. The keyboard makefile will not be included in that case, and therefore not the CUSTOM_MATRIX either. Furthermore the output files are read from many different .build directories, so it doesn't fail deterministically. For example on the Travis CI the compilation passes, since there's no outdated objects that needs recompilation.
2016-07-24Fixes midi functionalityGravatar Jack Humbert
2016-07-07Makefile changes and files to compile VisualizerGravatar Fred Sundvik