comparison ctobin @ 142:7bbdc034e347

Fix some bugs. Get basic network code working (epoll listener + accept connections). Start porting webserver.
author Mike Pavone <pavone@retrodev.com>
date Sun, 21 Nov 2010 16:33:17 -0500
parents a68e6828d896
children
comparison
equal deleted inserted replaced
141:f2cb85c53ced 142:7bbdc034e347
18 CC="gcc" 18 CC="gcc"
19 fi 19 fi
20 20
21 file=$1 21 file=$1
22 shift 22 shift
23 echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c transaction.c" 23 echo "$CC -o $bin $@ $file.c blueprint.c context.c fixed_alloc.c object.c transaction.c net.c"
24 $CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c transaction.c 24 $CC -o $bin $@ "$file.c" blueprint.c context.c fixed_alloc.c object.c transaction.c net.c
25 25
26 cd .. 26 cd ..
27 27