Changeset 1b1164e8 in mainline for uspace/srv/net/netif/lo/Makefile
- Timestamp:
- 2010-03-23T14:44:00Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 63f8966
- Parents:
- d99c1d2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/netif/lo/Makefile
rd99c1d2 r1b1164e8 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.common 35 include $(NET_BASE)../../../Makefile.config 37 BINARY = lo 36 38 37 ## Sources 38 # 39 -include $(COMMON_MAKEFILE) 40 -include $(CONFIG_MAKEFILE) 39 41 40 OUTPUT = $(NAME)41 42 SOURCES = \ 42 $(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.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 51 52 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 53 ifeq ($(CONFIG_NETWORKING),module) 54 SOURCES += \ 55 $(NET_BASE)/nil/nildummy/nildummy.c \ 56 $(NET_BASE)/netif/netif_nil_bundle.c 62 57 endif 63 58 64 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.