Changeset c621f4aa in mainline for uspace/srv/net/cfg/Makefile
- Timestamp:
- 2010-07-25T10:11:13Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/fix-logger-deadlock, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 377cce8
- Parents:
- 24a2517 (diff), a2da43c (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 moved
-
uspace/srv/net/cfg/Makefile (moved) (moved from boot/arch/sparc64/loader/Makefile.common ) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/cfg/Makefile
r24a2517 rc621f4aa 1 1 # 2 # Copyright (c) 20 05Martin Decky2 # Copyright (c) 2010 Martin Decky 3 3 # All rights reserved. 4 4 # … … 27 27 # 28 28 29 USPACE_PREFIX = ../../.. 30 ROOT_PATH = $(USPACE_PREFIX)/.. 29 31 30 ## Common names 31 # 32 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 33 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 32 34 33 include ../../../Makefile.common 35 -include $(COMMON_MAKEFILE) 36 -include $(CONFIG_MAKEFILE) 34 37 35 DEPEND = Makefile.depend 36 DEPEND_PREV = $(DEPEND).prev 37 JOB = image.job 38 OUTPUT = image.boot 38 ifeq ($(CONFIG_NETIF_NIL_BUNDLE),y) 39 LO_SOURCE = lo.netif_nil_bundle 40 NE2K_SOURCE = ne2k.netif_nil_bundle 41 else 42 LO_SOURCE = lo.netif_standalone 43 NE2K_SOURCE = ne2k.netif_standalone 44 endif 39 45 40 L INK = _link.ld41 COMPS = _components 46 LO_TARGET = lo 47 NE2K_TARGET = ne2k 42 48 43 KERNELDIR = ../../../../kernel 44 USPACEDIR = ../../../../uspace 49 .PHONY: all clean 45 50 46 RD_SRVS_GENERIC = \ 47 $(USPACEDIR)/srv/fs/fat/fat \ 48 $(USPACEDIR)/srv/hw/cir/fhc/fhc \ 49 $(USPACEDIR)/srv/hw/cir/obio/obio 51 all: $(LO_TARGET) $(NE2K_TARGET) 50 52 51 RD_APPS_GENERIC = \ 52 $(USPACEDIR)/app/tester/tester 53 clean: 54 rm -f $(LO_TARGET) $(NE2K_TARGET) 55 56 $(LO_TARGET): $(LO_SOURCE) 57 cp $< $@ 58 59 $(NE2K_TARGET): $(NE2K_SOURCE) 60 cp $< $@
Note:
See TracChangeset
for help on using the changeset viewer.
