Subversion Repositories HelenOS

Rev

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

Rev 3901 Rev 3989
Line 1... Line 1...
1
#
1
#
2
# Copyright (c) 2005 Martin Decky
2
# Copyright (c) 2009 Lukas Mejdrech
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
Line 26... Line 26...
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
NAME = networking
29
NAME = networking
30
 
30
 
31
## Setup toolchain
31
NET_BASE = ../
32
#
-
 
-
 
32
STRUCTURES = $(NET_BASE)structures/
33
 
33
 
34
LIBC_PREFIX = ../../../lib/libc
-
 
35
SOFTINT_PREFIX = ../../../lib/softint
-
 
36
include $(LIBC_PREFIX)/Makefile.toolchain
-
 
37
include ../../../../Makefile.config
34
include ../../../../Makefile.config
38
 
35
 
39
LIBS = $(LIBC_PREFIX)/libc.a
-
 
40
 
-
 
41
## Sources
36
## Sources
42
#
37
#
43
 
38
 
44
OUTPUT = $(NAME)
39
OUTPUT = $(NAME)
45
SOURCES = \
40
SOURCES = \
46
	$(NAME).c \
41
	$(NAME).c \
47
	../module.c \
42
	$(NET_BASE)module.c \
48
	../modules.c \
43
	$(NET_BASE)modules.c \
49
	../structures/char_map.c \
44
	$(STRUCTURES)char_map.c \
50
	../structures/measured_strings.c \
45
	$(STRUCTURES)measured_strings.c \
51
	../structures/packet/packet.c \
46
	$(STRUCTURES)packet/packet.c \
52
	../structures/packet/packet_server.c
47
	$(STRUCTURES)packet/packet_server.c
53
#	../self_test.c
48
#	$(NET_BASE)self_test.c
54
 
-
 
55
DEFS += -D $(NAME)_message=module_message -D $(NAME)_start_module=module_start -D $(NAME)_print_name=module_print_name
-
 
56
 
-
 
57
DEFS += -D NETWORKING_$(NETWORKING)
-
 
58
 
49
 
59
ifeq ($(NETWORKING), module)
50
ifeq ($(NETWORKING), module)
60
 
51
 
61
	SOURCES +=	../ip/ip.c \
52
	SOURCES +=	$(NET_BASE)il/arp/arp.c \
-
 
53
				$(NET_BASE)il/ip/ip.c \
62
			../tcp/tcp.c
54
				$(NET_BASE)tl/tcp/tcp.c
63
 
55
 
64
	DEFS += -D IP_BUNDLE=1 -D TCP_BUNDLE=1
56
	NET_DEFS += -D ARP_BUNDLE=1 -D IP_BUNDLE=1 -D TCP_BUNDLE=1
65
 
57
 
66
endif
58
endif
67
 
59
 
68
OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
60
NET_DEFS += -D NETWORKING_$(NETWORKING)
69
 
-
 
70
.PHONY: all clean depend disasm
-
 
71
 
-
 
72
all: $(OUTPUT) $(OUTPUT).disasm
-
 
73
 
-
 
74
-include Makefile.depend
-
 
75
 
-
 
76
clean:
-
 
77
	-rm -f $(OUTPUT) $(OUTPUT).map $(OUTPUT).disasm Makefile.depend
-
 
78
 
-
 
79
depend:
-
 
80
	$(CC) $(DEFS) $(CFLAGS) -M $(SOURCES) > Makefile.depend
-
 
81
 
-
 
82
$(OUTPUT): $(OBJECTS) $(LIBS)
-
 
83
	$(LD) -T $(LIBC_PREFIX)/arch/$(ARCH)/_link.ld $(OBJECTS) $(LIBS) $(LFLAGS) -o $@ -Map $(OUTPUT).map
-
 
84
 
-
 
85
disasm: $(OUTPUT).disasm
-
 
86
 
-
 
87
$(OUTPUT).disasm: $(OUTPUT)
-
 
88
	$(OBJDUMP) -d $< >$@
-
 
89
 
-
 
90
%.o: %.S
-
 
91
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
-
 
92
 
-
 
93
%.o: %.s
-
 
94
	$(AS) $(AFLAGS) $< -o $@
-
 
95
 
61
 
96
%.o: %.c
-
 
97
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
62
include $(NET_BASE)Makefile.module