rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # copy this and makefile to your external root directory and customize |
| 2 | # according to how you want to use a split repository |
| 3 | |
| 4 | # the top level directory that all paths are relative to |
| 5 | LKMAKEROOT := . |
| 6 | |
| 7 | # paths relative to LKMAKEROOT where additional modules should be searched |
| 8 | LKINC := projectroot |
| 9 | |
| 10 | # the path relative to LKMAKEROOT where the main lk repository lives |
| 11 | LKROOT := lk |
| 12 | |
| 13 | # set the directory relative to LKMAKEROOT where output will go |
| 14 | BUILDROOT ?= . |
| 15 | |
| 16 | # set the default project if no args are passed |
| 17 | DEFAULT_PROJECT ?= testproject |
| 18 | |
| 19 | #TOOLCHAIN_PREFIX := <relative path to toolchain> |