Add Cygwin build
This commit is contained in:
parent
fc5df2c2a7
commit
3b4d31db85
|
@ -1,6 +1,11 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -eu
|
set -eu
|
||||||
os="$(uname | tr A-Z- a-z_)"
|
os="$(uname | tr A-Z- a-z_)"
|
||||||
|
case $os in
|
||||||
|
cygwin*)
|
||||||
|
os=linux
|
||||||
|
;;
|
||||||
|
esac
|
||||||
o_files=""
|
o_files=""
|
||||||
o_files="$o_files algo_color.o"
|
o_files="$o_files algo_color.o"
|
||||||
o_files="$o_files argcount.o"
|
o_files="$o_files argcount.o"
|
||||||
|
|
Loading…
Reference in New Issue