OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [bootloaders/] [orpmon/] [Makefile] - Diff between revs 355 and 463

Only display areas with differences | Details | Blame | View Log

Rev 355 Rev 463
ifndef CROSS_COMPILE
ifndef CROSS_COMPILE
CROSS_COMPILE = or32-elf-
CROSS_COMPILE = or32-elf-
endif
endif
export  CROSS_COMPILE
export  CROSS_COMPILE
#########################################################################
#########################################################################
TOPDIR  := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
TOPDIR  := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
export  TOPDIR
export  TOPDIR
include $(TOPDIR)/config.mk
include $(TOPDIR)/config.mk
# order is important here:
# order is important here:
SUBDIRS = drivers common cmds coremark services doc
SUBDIRS = drivers common cmds coremark services doc
LIBS  = common/common_o.o cmds/cmds.o coremark/coremark.o services/services.o \
LIBS  = common/common_o.o cmds/cmds.o coremark/coremark.o services/services.o \
         drivers/drivers.o
         drivers/drivers.o
#########################################################################
#########################################################################
all: build.h orpmon.or32 orpmon-flash.or32
all: build.h orpmon.or32 orpmon-flash.or32
build.h:
build.h:
        echo "#define BUILD_VERSION \"`date`\"" > $(TOPDIR)/include/build.h
        echo "#define BUILD_VERSION \"`date`\"" > $(TOPDIR)/include/build.h
docs: Makefile
docs: Makefile
        $(MAKE) -C doc docs || exit 1
        $(MAKE) -C doc docs || exit 1
reset.o: reset.S Makefile
reset.o: reset.S Makefile
        $(CC) -c -o $@ $< $(CFLAGS) -DIN_FLASH=0
        $(CC) -c -o $@ $< $(CFLAGS) -DIN_FLASH=0
 
 
reset-flash.o: reset.S Makefile
reset-flash.o: flash_reset.S Makefile
        $(CC) -c -o $@ $< $(CFLAGS) -DIN_FLASH=1
        $(CC) -c -o $@ $< $(CFLAGS) -DIN_FLASH=1
orpmon.or32: depend subdirs reset.o $(LIBS) Makefile gencrc
orpmon.or32: depend subdirs reset.o $(LIBS) Makefile gencrc
        $(LD) -Tram.ld -o $@ reset.o -e 256 $(LIBS) $(LDFLAGS)
        $(LD) -Tram.ld -o $@ reset.o -e 256 $(LIBS) $(LDFLAGS)
        $(OBJCOPY) -O binary $@ $@.bin
        $(OBJCOPY) -O binary $@ $@.bin
#-S -j .vectors -j .text -j .data -j .rodata
#-S -j .vectors -j .text -j .data -j .rodata
#       ./gencrc $@.tmp $@
#       ./gencrc $@.tmp $@
orpmon-flash.or32: depend subdirs reset-flash.o $(LIBS) Makefile gencrc
orpmon-flash.or32: depend subdirs reset-flash.o $(LIBS) Makefile gencrc
        $(LD) -Tflash.ld -o $@ reset-flash.o $(LIBS) $(LDFLAGS)
        $(LD) -Tflash.ld -o $@ reset-flash.o $(LIBS) $(LDFLAGS)
        $(OBJCOPY) -O binary $@ $@.tmp
        $(OBJCOPY) -O binary $@ $@.tmp
#       ../utils/bin2flimg 4 $@.tmp > $@.mem
#       ../utils/bin2flimg 4 $@.tmp > $@.mem
gencrc: gencrc.c
gencrc: gencrc.c
        $(HOSTCC) -o gencrc -g gencrc.c
        $(HOSTCC) -o gencrc -g gencrc.c
System.map: orpmon.or32
System.map: orpmon.or32
        @$(NM) $< | \
        @$(NM) $< | \
                grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
                grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | \
                sort > System.map
                sort > System.map
#########################################################################
#########################################################################
depend dep:
depend dep:
        @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
        @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir .depend ; done
subdirs:
subdirs:
        @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done
        @for dir in $(SUBDIRS) ; do $(MAKE) -C $$dir || exit 1 ; done
clean:
clean:
        find . -type f \
        find . -type f \
                \( -name 'core' -o -name '*.bak' -o -name '*~' \
                \( -name 'core' -o -name '*.bak' -o -name '*~' \
                -o -name '*.o'  -o -name '*.tmp' \
                -o -name '*.o'  -o -name '*.tmp' \
                -o -name '*.or32' -o -name '*.bin' -o -name '*.srec' \
                -o -name '*.or32' -o -name '*.bin' -o -name '*.srec' \
                -o -name '*.mem' -o -name '*.img' -o -name '*.out' \
                -o -name '*.mem' -o -name '*.img' -o -name '*.out' \
                -o -name '*.aux' -o -name '*.log' \) -print \
                -o -name '*.aux' -o -name '*.log' \) -print \
                | xargs rm -f
                | xargs rm -f
        rm -f System.map
        rm -f System.map
distclean: clean
distclean: clean
        find . -type f \
        find . -type f \
                \( -name .depend -o -name '*.srec' -o -name '*.bin' \
                \( -name .depend -o -name '*.srec' -o -name '*.bin' \
                -o -name '*.pdf' \) \
                -o -name '*.pdf' \) \
                -print | xargs rm -f
                -print | xargs rm -f
        rm -f $(OBJS) *.bak tags TAGS
        rm -f $(OBJS) *.bak tags TAGS
        rm -fr *.*~
        rm -fr *.*~
        rm -f gencrc
        rm -f gencrc
#########################################################################
#########################################################################
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.