home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Nebula 1995 August
/
NEBULA.bin
/
SourceCode
/
Tutorial
/
Cookbook
/
makeall.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1993-01-18
|
238 b
|
18 lines
#!/bin/sh
# shell script for compiling all recipes
# should be run after the program has been unarchived
for i in *
do
if [ -d $i ]
then
cd "$i"
if [ -f Makefile ]
then
echo "running make in " $i
make
fi
cd ..
fi
done