Changes in uspace/srv/net/netif/lo/Makefile [1b1164e8:21580dd] in mainline
- File:
-
- 1 edited
-
uspace/srv/net/netif/lo/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/lo/Makefile
r1b1164e8 r21580dd 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.config 38 35 39 -include $(COMMON_MAKEFILE) 40 -include $(CONFIG_MAKEFILE) 36 ## Sources 37 # 41 38 39 OUTPUT = $(NAME) 42 40 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.c41 $(NAME).c \ 42 $(NET_BASE)module.c \ 43 $(NET_BASE)modules.c \ 44 $(NET_BASE)net/net_remote.c \ 45 $(NET_BASE)netif/netif.c \ 46 $(STRUCTURES)measured_strings.c \ 47 $(STRUCTURES)packet/packet.c \ 48 $(STRUCTURES)packet/packet_client.c \ 49 $(STRUCTURES)packet/packet_remote.c 52 50 53 ifeq ($(CONFIG_NETWORKING),module) 54 SOURCES += \ 55 $(NET_BASE)/nil/nildummy/nildummy.c \ 56 $(NET_BASE)/netif/netif_nil_bundle.c 51 ifeq ($(NETWORKING), module) 52 53 SOURCES += $(NET_BASE)nil/nildummy/nildummy.c \ 54 $(NET_BASE)netif/netif_nil_bundle.c 55 56 else 57 58 SOURCES += $(NET_BASE)nil/nil_remote.c \ 59 $(NET_BASE)netif/netif_standalone.c 60 57 61 endif 58 62 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 63 include $(NET_BASE)Makefile.module
Note:
See TracChangeset
for help on using the changeset viewer.
