1#! /usr/bin/env bash
2
3# file      : build/c/generic/configure
4# copyright : Copyright (c) 2004-2012 Code Synthesis Tools CC
5# license   : GNU GPL v2; see accompanying LICENSE file
6
7# $1  out file
8#
9# bld_root     - build root
10# project_name - project name
11#
12
13source $bld_root/dialog.bash
14
15$echo
16$echo
17$echo "configuring '$project_name'"
18$echo
19$echo
20
21$echo
22$echo "Please enter the C compiler executable you would like to use."
23$echo
24
25c_generic=`read_path --command`
26
27echo "c_generic := $c_generic" > $1
28