Subversion Repositories HelenOS

Rev

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

Rev 4243 Rev 4261
Line 29... Line 29...
29
NAME = netif
29
NAME = netif
30
 
30
 
31
NET_BASE = ../../
31
NET_BASE = ../../
32
STRUCTURES = $(NET_BASE)structures/
32
STRUCTURES = $(NET_BASE)structures/
33
 
33
 
-
 
34
include $(NET_BASE)../../../Makefile.config
-
 
35
 
34
## Sources
36
## Sources
35
#
37
#
36
 
38
 
37
OUTPUT = dp8390
39
OUTPUT = dp8390
-
 
40
REBUILD =	$(OUTPUT)_module.c \
-
 
41
			../$(NAME).c
38
SOURCES = \
42
SOURCES = \
39
	$(OUTPUT).c \
43
	$(OUTPUT).c \
40
	$(OUTPUT)_module.c \
44
	$(REBUILD) \
41
	ne2000.c \
45
	ne2000.c \
42
	../$(NAME).c \
-
 
43
	$(NET_BASE)module.c \
46
	$(NET_BASE)module.c \
44
	$(NET_BASE)modules.c \
47
	$(NET_BASE)modules.c \
45
	$(STRUCTURES)measured_strings.c \
48
	$(STRUCTURES)measured_strings.c \
46
	$(STRUCTURES)packet/packet_client.c \
49
	$(STRUCTURES)packet/packet_client.c \
47
	$(STRUCTURES)packet/packet.c
50
	$(STRUCTURES)packet/packet.c
48
 
51
 
49
NET_DEFS += -D NETIF_BUNDLE=1
52
NET_DEFS += -D NETIF_BUNDLE=1
50
 
53
 
-
 
54
ifeq ($(NETWORKING), module)
-
 
55
 
-
 
56
	SOURCES +=	$(NET_BASE)crc.c
-
 
57
 
-
 
58
	REBUILD +=	$(NET_BASE)nil/eth/eth.c
-
 
59
 
-
 
60
	NET_DEFS += -D NIL_BUNDLE=1
-
 
61
 
-
 
62
endif
-
 
63
 
51
include $(NET_BASE)Makefile.module
64
include $(NET_BASE)Makefile.module