Show
Ignore:
Timestamp:
06/03/10 22:43:33 (2 years ago)
Author:
mwhitworth
Message:

Add to network stack.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • Whitix/branches/netchannel/user/sdk/network/Makefile

    r2088 r2099  
    1 CFLAGS = -Wall -I../include -I../../libc/include -nostdlib -ffreestanding -fno-builtin -fPIC -m32 -O3 -Werror 
     1CFLAGS = -Wall -I../include -I../../libc/include -nostdlib -ffreestanding -fno-builtin -fPIC -m32 -O2 -Werror 
    22 
    3 OBJS = aio.o byteorder.o ipv4.o udp.o memory.o dns.o icmp.o tcp.o tcp_options.o channels.o init.o socket.o stats.o 
     3OBJS = aio.o byteorder.o ipv4.o udp.o memory.o dns.o icmp.o channels.o init.o socket.o stats.o events.o 
    44 
    55.c.o: 
     
    77 
    88build: $(OBJS) 
     9        make -C tcp 
    910        gcc -m32 -nostdlib -ffreestanding -fno-builtin -shared -L../libs/ \ 
    1011        -L../../posix/ -lpthread -o ../libs/libnetwork.so -Wl,-init=NetworkPreInit \ 
    11                 $(OBJS) ../../libc/init/crt_begin.o ../../libc/init/crt_end.o 
     12                $(OBJS) tcp/*.o ../../libc/init/crt_begin.o ../../libc/init/crt_end.o 
    1213 
    1314clean: