Subversion Repositories HelenOS

Rev

Rev 3846 | Rev 3901 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3846 Rev 3886
Line 29... Line 29...
29
NAME = tcp
29
NAME = tcp
30
 
30
 
31
## Setup toolchain
31
## Setup toolchain
32
#
32
#
33
 
33
 
34
LIBC_PREFIX = ../../../lib/libc
34
LIBC_PREFIX = ../../../../lib/libc
35
SOFTINT_PREFIX = ../../../lib/softint
35
SOFTINT_PREFIX = ../../../../lib/softint
36
include $(LIBC_PREFIX)/Makefile.toolchain
36
include $(LIBC_PREFIX)/Makefile.toolchain
37
 
37
 
38
LIBS = $(LIBC_PREFIX)/libc.a
38
LIBS = $(LIBC_PREFIX)/libc.a
39
 
39
 
40
## Sources
40
## Sources
Line 42... Line 42...
42
 
42
 
43
OUTPUT = $(NAME)
43
OUTPUT = $(NAME)
44
SOURCES = \
44
SOURCES = \
45
	$(NAME)_module.c \
45
	$(NAME)_module.c \
46
	$(NAME).c \
46
	$(NAME).c \
47
	../module.c \
47
	../../module.c \
48
	../modules.c \
48
	../../modules.c \
49
	../packet.c
49
	../../structures/packet/packet.c
50
 
50
 
51
DEFS += -D TCP_BUNDLE=1 -D $(NAME)_message=module_message -D $(NAME)_start_module=module_start -D $(NAME)_print_name=module_print_name
51
DEFS += -D TCP_BUNDLE=1 -D $(NAME)_message=module_message -D $(NAME)_start_module=module_start -D $(NAME)_print_name=module_print_name
52
 
52
 
53
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
53
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
54
 
54