Changes in uspace/srv/net/netif/dp8390/Makefile [1b1164e8:177e4ea] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/dp8390/Makefile
r1b1164e8 r177e4ea 1 1 # 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 2 # Copyright (c) 2009 Lukas Mejdrech 4 3 # All rights reserved. 5 4 # … … 28 27 # 29 28 30 NET_BASE = ../.. 31 USPACE_PREFIX = ../../../.. 32 ROOT_PATH = $(USPACE_PREFIX)/.. 29 NAME = dp8390 33 30 34 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 35 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 31 NET_BASE = ../../ 32 STRUCTURES = $(NET_BASE)structures/ 36 33 37 BINARY = dp8390 34 include $(NET_BASE)../../../Makefile.common 35 include $(NET_BASE)../../../Makefile.config 38 36 39 -include $(COMMON_MAKEFILE) 40 -include $(CONFIG_MAKEFILE) 37 ## Sources 38 # 41 39 40 OUTPUT = $(NAME) 42 41 SOURCES = \ 43 dp8390.c \44 dp8390_module.c \42 $(NAME).c \ 43 $(NAME)_module.c \ 45 44 ne2000.c \ 46 $(NET_BASE) /module.c \47 $(NET_BASE) /modules.c \48 $(NET_BASE) /netif/netif.c \49 $( NET_BASE)/structures/measured_strings.c \50 $( NET_BASE)/structures/packet/packet.c \51 $( NET_BASE)/structures/packet/packet_client.c \52 $( NET_BASE)/structures/packet/packet_remote.c45 $(NET_BASE)module.c \ 46 $(NET_BASE)modules.c \ 47 $(NET_BASE)netif/netif.c \ 48 $(STRUCTURES)measured_strings.c \ 49 $(STRUCTURES)packet/packet.c \ 50 $(STRUCTURES)packet/packet_client.c \ 51 $(STRUCTURES)packet/packet_remote.c 53 52 54 ifeq ($(CONFIG_NETWORKING),module) 55 SOURCES += \ 56 $(NET_BASE)/checksum.c \ 57 $(NET_BASE)/nil/eth/eth.c \ 58 $(NET_BASE)/net/net_remote.c \ 59 $(NET_BASE)/netif/netif_nil_bundle.c 53 ifeq ($(NETWORKING), module) 54 55 SOURCES += $(NET_BASE)checksum.c \ 56 $(NET_BASE)nil/eth/eth.c \ 57 $(NET_BASE)net/net_remote.c \ 58 $(NET_BASE)netif/netif_nil_bundle.c 59 60 else 61 62 SOURCES += $(NET_BASE)nil/nil_remote.c \ 63 $(NET_BASE)netif/netif_standalone.c 64 60 65 endif 61 66 62 ifeq ($(CONFIG_NETWORKING),modular) 63 SOURCES += \ 64 $(NET_BASE)/nil/nil_remote.c \ 65 $(NET_BASE)/netif/netif_standalone.c 66 endif 67 68 include $(USPACE_PREFIX)/Makefile.common 67 include $(NET_BASE)Makefile.module
Note:
See TracChangeset
for help on using the changeset viewer.