desuck

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules

commit f8dc5bbfdb6adfeece4b3eeff7a6e8d339786bd3
parent 4e02585db3b705a1b57869586f536a402be635f4
Author: grouse <bdmfegys@duck.com>
Date:   Sat,  2 Mar 2024 23:10:43 -0500

fix Makefile install and clean targets for birdwm submodules

Diffstat:
MMakefile | 16++++++++++++++--
1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -9,10 +9,22 @@ config.h: make -C ${SMLS} config.h install: - make -C birdwm fullinstall + make -C birdwm install +# birdwm submodules, fullinstall target of birdwm does not work* + make -C birdwm/slstatus install + make -C birdwm/slock install +# other birdforks of suckless utilities make -C birdsurf install make -C birdterm install make -C birdmenu install clean: - make -C ${SMLS} clean + #make -C ${SMLS} clean + make -C birdwm clean +# birdwm submodules, fullclean target of birdwm does not work* + make -C birdwm/slstatus clean + make -C birdwm/slock clean +# other birdforkcs of suckless utilities + make -C birdsurf clean + make -C birdterm clean + make -C birdmenu clean