home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung 2
/
Power-Programmierung CD 2 (Tewi)(1994).iso
/
c
/
library
/
dos
/
crypt
/
pgp23s
/
ccc
< 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
Text File
|
1993-05-09
|
320 b
|
26 lines
#!/bin/sh
#
# script to compile ANSI source with a K&R compiler and unproto.
#
while :
do
case $1 in
-c) ;;
-o) shift ;;
*.c) break ;;
*) arg="$arg $1" ;;
esac
shift
done
set -e
f=$1
shift
b=`basename $f .c`
cc -E $arg $f | unproto/unproto >${b}.i
cc -c $arg ${b}.i $*
rm ${b}.i