Commit 33bc9aaf by Jessica Hawkwell

making tools slightly smarter

1 parent de6ca801
Showing with 18 additions and 2 deletions
#!/bin/sh
if [ -x build/bin/NitroWin ]; then
echo Running \"make clean\"
make clean
fi
CMAKEFILES=`find * -type d -name CMakeFiles`
CMAKECACHE=`find * -type f -name CMakeCache.txt`
MAKEFILES=`find * -type f -name Makefile`
......@@ -11,7 +16,7 @@ CORES=`find * -type f -name "*.core"`
VIMS=`find * -type f -name "*~"`
DOC=`find * -type d -name generated-doc`
FILES="Doxyfile src/nde/nde.h src/ntk/ntk.h src/NitroWin/NitroWin.h"
FILES="src/nde/nde.h src/ntk/ntk.h src/NitroWin/NitroWin.h"
if [ -n "${CMAKEFILES}" ]; then
echo Removing CMakeFiles
......@@ -71,6 +76,6 @@ fi
for F in ${FILES}
do
if [ -f $F ]; then
rm -v $F
rm $F
fi
done
#!/bin/sh
if [ -f CMakeCache.txt ]; then
else
cmake .
fi
if [ -x build/bin/NitroWin ]; then
else
make
fi
XEPHYR=$(which Xephyr)
xinit ./xinitrc -- "$XEPHYR" :100 -screen 1000x750 -host-cursor
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!