From d1ef562405da02b08c9624f90fc717323b68fbf2 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Tue, 20 Feb 2018 00:24:09 +0000 Subject: [PATCH] A simple script to clean all the relevant sbbs3 build output directories. Use 'cleanall.sh RELEASE=1' to clean the release output dirs. The deafult is the DEBUG output dirs otherwise. This possibly could be made a 'clean' target of the Makefile already in this directory, but I don't want to deal with recursive make right now. --- src/cleanall.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 src/cleanall.sh diff --git a/src/cleanall.sh b/src/cleanall.sh new file mode 100755 index 0000000000..7daea03828 --- /dev/null +++ b/src/cleanall.sh @@ -0,0 +1,9 @@ +#!/bin/sh +make -C conio clean $@ +make -C sbbs3 clean $@ +make -C sbbs3/scfg clean $@ +make -C sbbs3/uedit clean $@ +make -C sbbs3/umonitor clean $@ +make -C smblib clean $@ +make -C uifc clean $@ +make -C xpdev clean $@ -- GitLab