Blame view

samplecode/fram/make.sh 242 Bytes
e1aa93ffa   larche   = Fram sample code
1
2
3
4
5
6
7
8
9
10
11
12
  #!/bin/bash
  
  if [ -z "${FA_PRODUCT}" ]
  then
      echo ""
      echo "Check environment variables..."
      echo "  $> source ../../env-4.9.4.env"
      echo ""
      exit 1
  fi
  
  ${CROSS_COMPILE}gcc -o write write.c
e81d4da08   larche   = 오타 수정
13
  ${CROSS_COMPILE}gcc -o read read.c