Changes in uspace/srv/net/netif/lo/Makefile [1b1164e8:177e4ea] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/lo/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 = lo 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 = lo 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 lo.c \44 $(NET_BASE) /module.c \45 $(NET_BASE) /modules.c \46 $(NET_BASE) /net/net_remote.c \47 $(NET_BASE) /netif/netif.c \48 $( NET_BASE)/structures/measured_strings.c \49 $( NET_BASE)/structures/packet/packet.c \50 $( NET_BASE)/structures/packet/packet_client.c \51 $( NET_BASE)/structures/packet/packet_remote.c42 $(NAME).c \ 43 $(NET_BASE)module.c \ 44 $(NET_BASE)modules.c \ 45 $(NET_BASE)net/net_remote.c \ 46 $(NET_BASE)netif/netif.c \ 47 $(STRUCTURES)measured_strings.c \ 48 $(STRUCTURES)packet/packet.c \ 49 $(STRUCTURES)packet/packet_client.c \ 50 $(STRUCTURES)packet/packet_remote.c 52 51 53 ifeq ($(CONFIG_NETWORKING),module) 54 SOURCES += \ 55 $(NET_BASE)/nil/nildummy/nildummy.c \ 56 $(NET_BASE)/netif/netif_nil_bundle.c 52 ifeq ($(NETWORKING), module) 53 54 SOURCES += $(NET_BASE)nil/nildummy/nildummy.c \ 55 $(NET_BASE)netif/netif_nil_bundle.c 56 57 else 58 59 SOURCES += $(NET_BASE)nil/nil_remote.c \ 60 $(NET_BASE)netif/netif_standalone.c 61 57 62 endif 58 63 59 ifeq ($(CONFIG_NETWORKING),modular) 60 SOURCES += \ 61 $(NET_BASE)/nil/nil_remote.c \ 62 $(NET_BASE)/netif/netif_standalone.c 63 endif 64 65 include $(USPACE_PREFIX)/Makefile.common 64 include $(NET_BASE)Makefile.module
Note:
See TracChangeset
for help on using the changeset viewer.