home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Graphics / Graphics.zip / mgl5src1.zip / mgl / bin / gcc-beos.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  2002-08-21  |  385b  |  17 lines

  1. #! /bin/sh
  2.  
  3. # Setup for compiling with GCC/G++ for BeOS
  4.  
  5. if [ "$CHECKED" = "1" ]; then
  6.     echo Checked debug build enabled.
  7. else
  8.     echo Release build enabled.
  9. fi
  10.  
  11. export MAKESTARTUP=$SCITECH/makedefs/gcc_beos.mk
  12. export INCLUDE="-Iinclude -I$SCITECH/include -I$PRIVATE/include"
  13. export USE_X11=0
  14. export USE_BEOS=1
  15.  
  16. echo GCC BeOS console compilation environment set up
  17.