Ignore:
Timestamp:
2010-03-27T09:22:17Z (16 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
36a75a2
Parents:
cd82bb1 (diff), eaf22d4 (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.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/sparc64/loader/Makefile.build

    rcd82bb1 r371bd7d  
    3232
    3333include ../../../../version
     34include ../../../../Makefile.common
    3435include ../../../../Makefile.config
    35 include ../../../../config.defs
    3636include Makefile.common
    3737include Makefile.toolchain
     
    5151        asm.S \
    5252        boot.S
    53 
    54 COMPONENTS = \
    55         $(KERNELDIR)/kernel.bin \
    56         $(USPACEDIR)/srv/ns/ns \
    57         $(USPACEDIR)/app/init/init \
    58         $(USPACEDIR)/srv/loader/loader \
    59         $(USPACEDIR)/srv/devmap/devmap \
    60         $(USPACEDIR)/srv/bd/rd/rd \
    61         $(USPACEDIR)/srv/vfs/vfs
    62 ifeq ($(RDFMT),tmpfs)
    63         COMPONENTS += $(USPACEDIR)/srv/fs/tmpfs/tmpfs
    64 endif
    65 ifeq ($(RDFMT),fat)
    66         COMPONENTS += $(USPACEDIR)/srv/fs/fat/fat
    67 endif
    6853
    6954OBJECTS := $(addsuffix .o,$(basename $(SOURCES)))
     
    9277%.o: %.S $(DEPEND)
    9378        $(CC) $(DEFS) $(CFLAGS) -D__ASM__ -c $< -o $@
     79ifeq ($(PRECHECK),y)
     80        $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(CFLAGS) -D__ASM__
     81endif
    9482
    9583%.o: %.c $(DEPEND)
    9684        $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
     85ifeq ($(PRECHECK),y)
     86        $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)
     87endif
    9788
    9889$(DEPEND):
     90        rm -f $(USPACEDIR)/dist/srv/*
     91        rm -f $(USPACEDIR)/dist/app/*
     92        rm -f $(USPACEDIR)/dist/cfg/net/*
     93
    9994        for file in $(RD_SRVS) ; do \
    10095                cp $$file $(USPACEDIR)/dist/srv/ ; \
     
    10297        for file in $(RD_APPS) ; do \
    10398                cp $$file $(USPACEDIR)/dist/app/ ; \
     99        done
     100        for file in $(NET_CFG) ; do \
     101                cp $$file $(USPACEDIR)/dist/cfg/net/ ; \
    104102        done
    105103ifeq ($(RDFMT),tmpfs)
Note: See TracChangeset for help on using the changeset viewer.