Changeset 76ca3f7 in mainline for uspace/srv/net/netif/lo/Makefile
- Timestamp:
- 2010-03-23T20:49:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e417b96
- Parents:
- b48ebd19 (diff), 63f8966 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/lo/Makefile
rb48ebd19 r76ca3f7 1 1 # 2 # Copyright (c) 2009 Lukas Mejdrech 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 3 4 # All rights reserved. 4 5 # … … 27 28 # 28 29 29 NAME = lo 30 NET_BASE = ../.. 31 USPACE_PREFIX = ../../../.. 32 ROOT_PATH = $(USPACE_PREFIX)/.. 30 33 31 NET_BASE = ../../ 32 STRUCTURES = $(NET_BASE)structures/ 34 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 35 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 33 36 34 include $(NET_BASE)../../../Makefile.config 37 BINARY = lo 35 38 36 ## Sources 37 # 39 -include $(COMMON_MAKEFILE) 40 -include $(CONFIG_MAKEFILE) 38 41 39 OUTPUT = $(NAME)40 42 SOURCES = \ 41 $(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.c43 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.c 50 52 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 53 ifeq ($(CONFIG_NETWORKING),module) 54 SOURCES += \ 55 $(NET_BASE)/nil/nildummy/nildummy.c \ 56 $(NET_BASE)/netif/netif_nil_bundle.c 61 57 endif 62 58 63 include $(NET_BASE)Makefile.module 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
Note:
See TracChangeset
for help on using the changeset viewer.