moxanix/build.sh
2014-03-08 18:26:04 +01:00

12 lines
193 B
Bash
Executable file

#!/bin/bash
# Builds MoxaNix project
#TODO switch to Makefile :)
name="moxerver"
include_dir="."
src_list="$name.c server.c client.c tty.c telnet.c"
gcc $src_list -o $name -I $include_dir