commit cf16dbf78601ecc5f2a7b577420f4fff5d6a2ba1 parent e7bc4d723f798ffb15a46d33cbc6dbcd9b9aa4e8 Author: grouse <bdmfegys@duck.com> Date: Sat, 2 Mar 2024 12:56:40 -0500 create Makefile, with options, config.h, install and clean targets Diffstat:
| A | Makefile | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,18 @@ +# birdwm - dynamic window manager for birds +# See LICENSE file for copyright and license details. +SMLS = birdwm birdsurf birdmenu birdterm +options: + @echo desuck build options: + @echo TODO: FIXME + +config.h: + make -C ${SMLS} config.h + +install: + make -C birdwm fullinstall + make -C birdsurf install + make -C birdterm install + make -C birdmenu install + +clean: + make -C ${SMLS} clean