diff options
author | xengineering <me@xengineering.eu> | 2023-12-22 21:15:59 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-02 14:24:06 +0100 |
commit | ac348c4044e6252da91de247d77484509677cca0 (patch) | |
tree | 8d5177890446d856af5b2ff86fb9e2adbf9a54cf /Makefile | |
parent | 7224aa0c74ae51f49e87e9c18bc94c2761dadf24 (diff) | |
download | soundbox-ac348c4044e6252da91de247d77484509677cca0.tar soundbox-ac348c4044e6252da91de247d77484509677cca0.tar.zst soundbox-ac348c4044e6252da91de247d77484509677cca0.zip |
Switch to repository-global Makefile
The build system of this repository should be used from the repository
root. Subdirectories should only contain additional *.mk files which
will be included by the central Makefile.
This should allow to have dependencies between subdirectories if
required and easily allows to build everything.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a94ae02 --- /dev/null +++ b/Makefile @@ -0,0 +1,5 @@ +BUILD_DIR := ./build + +all: mech + +include mech/mech.mk |