summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorEric Norum <WENorum@lbl.gov>2002-06-28 21:58:41 +0000
committerEric Norum <WENorum@lbl.gov>2002-06-28 21:58:41 +0000
commitcbc2d8125987241306ba82aa853e3f6bb3069405 (patch)
tree467b2bbd9ca78056fd277ba4c114839750ba9271 /examples
parente8dcb4b635612f7c91fa6b318995e36018674bd6 (diff)
Useful add-on librariesaddon-libaddons
Diffstat (limited to 'examples')
-rw-r--r--examples/ncurses/BuildTests.sh36
1 files changed, 36 insertions, 0 deletions
diff --git a/examples/ncurses/BuildTests.sh b/examples/ncurses/BuildTests.sh
new file mode 100644
index 0000000..f8c2f68
--- /dev/null
+++ b/examples/ncurses/BuildTests.sh
@@ -0,0 +1,36 @@
+#!/bin/sh
+
+set -x
+
+SRCDIR=../../ncurses-5.2/test
+
+for TEST in \
+ blue \
+ bs \
+ cardfile \
+ ditto \
+ filter \
+ firework \
+ firstlast \
+ gdc \
+ hanoi \
+ hashtest \
+ keynames \
+ knight \
+ lrtest \
+ ncurses \
+ newdemo \
+ rain \
+ tclock \
+ testaddch \
+ testcurs \
+ testscanw \
+ view \
+ worm \
+ xmas
+do
+ rm -f $TEST.c
+ ln -s $SRCDIR/$TEST.c .
+ make TEST=$TEST SRCDIR=$SRCDIR
+ rm -f $TEST.c
+done