introducing files

This commit is contained in:
socec 2014-03-06 02:23:16 +01:00
parent d8efdfa0c7
commit 40607b98aa
7 changed files with 379 additions and 0 deletions

12
build.sh Executable file
View file

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