Skip to content
Snippets Groups Projects
Commit 3bb17a4c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Support running this script from other directories

e.g. running '../cleanall.sh' from the src/sbbs3 dir
parent 3b8ef8a8
No related branches found
No related tags found
No related merge requests found
#!/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 $@
make -C encode clean $@
make -C hash clean $@
DIR=$(dirname $0)
make -C $DIR/conio clean $@
make -C $DIR/sbbs3 clean $@
make -C $DIR/sbbs3/scfg clean $@
make -C $DIR/sbbs3/uedit clean $@
make -C $DIR/sbbs3/umonitor clean $@
make -C $DIR/smblib clean $@
make -C $DIR/uifc clean $@
make -C $DIR/xpdev clean $@
make -C $DIR/encode clean $@
make -C $DIR/hash clean $@
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment