X-Git-Url: https://deadsoftware.ru/gitweb?p=cpc.git;a=blobdiff_plain;f=make-all.sh;h=54294677e5deee81390cc17ba4a7e5dec5d049f5;hp=696571af89f7c3560845482592976bd84d2dac7e;hb=b123c8223aaafee51efd0ddbad900015a2628bed;hpb=e6f2dc69e5d8af2c60cf85c43fced7c370a9e427 diff --git a/make-all.sh b/make-all.sh index 696571a..5429467 100755 --- a/make-all.sh +++ b/make-all.sh @@ -45,6 +45,7 @@ usage() { echo " cpfront Generic C" echo "Operation systems:" echo " linux GNU/Linux" + echo " cygwin Cygwin" echo "Environment variables:" echo " CC C compiler binary" echo " CFLAGS C compiler options" @@ -63,13 +64,17 @@ make_stage() { local _this_system="$4" shift 4 "$_this/make.sh" -o "$_dir" -c "$_compiler" -l "$_linker" "$@" "$_this_cpu" "$_this_target" "$_this_system" + local _ext= + if [ "$_host_system" = "cygwin" ]; then + _ext=".exe" + fi if [ "$_target" = "cpfront" ]; then - _compiler="$_dir/cpfront" + _compiler="$_dir/cpfront${_ext}" _linker= else if [ "$_cpu" = "486" ]; then - _compiler="$_dir/cpc486" - _linker="$_dir/cpl486" + _compiler="$_dir/cpc486${_ext}" + _linker="$_dir/cpl486${_ext}" else error "unsupported cpu $_cpu" fi