|
Message
From: cvs at opencores.org<cvs@o...>
Date: Mon Feb 12 06:12:47 CET 2007
Subject: [cvs-checkins] MODIFIED: mlite ...
Date: 00/07/02 12:06:12 Modified: mlite/kernel makefile Log: Changed test.exe to test.axf Revision Changes Path 1.4 mlite/kernel/makefile http://www.opencores.org/cvsweb.shtml/mlite/kernel/makefile.diff?r1=1.3&r2=1.4 (In the diff below, changes in quantity of whitespace are not shown.) Index: makefile =================================================================== RCS file: /cvsroot/rhoads/mlite/kernel/makefile,v retrieving revision 1.3 retrieving revision 1.4 diff -u -b -r1.3 -r1.4 --- makefile 10 May 2006 02:52:43 -0000 1.3 +++ makefile 12 Feb 2007 05:12:47 -0000 1.4 @@ -13,11 +13,13 @@ $(GCC_MIPS) uart.c $(GCC_MIPS) rtos_test.c $(GCC_MIPS) math.c - $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.exe \ + $(GCC_MIPS) debugger.c + $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \ boot.o rtos.o libc.o uart.o rtos_test.o math.o ..\tools\convert_bin @sort <test.map >test2.map - @$(DUMP_MIPS) --disassemble test.exe > test.lst + @$(DUMP_MIPS) --disassemble test.axf > test.lst + cp test.bin ..\tools clean: -del *.o *.obj *.exe *.map *.lst *.hex *.txt
|