home *** CD-ROM | disk | FTP | other *** search
- #!/bin/csh
- if (-f /bin/arch) then
- set arch=sun4
- else
- set arch=vax
- endif
-
- switch ("$arch")
- case sun4:
- echo "===== making for sun4 ====="
- cd sun4.objs ; make -f Makefile.sun4 $*
- breaksw
- case vax:
- echo "===== making for vax ====="
- cd vax.objs ; make -f Makefile.vax $*
- breaksw
- endsw
-