|
Message
From: cvs at opencores.org<cvs@o...>
Date: Tue Feb 13 20:51:06 CET 2007
Subject: [cvs-checkins] MODIFIED: mlite ...
Date: 00/07/02 13:20:51 Modified: mlite/tools makefile Log: Better DOS support Revision Changes Path 1.16 mlite/tools/makefile http://www.opencores.org/cvsweb.shtml/mlite/tools/makefile.diff?r1=1.15&r2=1.16 (In the diff below, changes in quantity of whitespace are not shown.) Index: makefile =================================================================== RCS file: /cvsroot/rhoads/mlite/tools/makefile,v retrieving revision 1.15 retrieving revision 1.16 diff -u -b -r1.15 -r1.16 --- makefile 12 Feb 2007 05:20:51 -0000 1.15 +++ makefile 13 Feb 2007 19:51:05 -0000 1.16 @@ -9,20 +9,24 @@ #RM = rm -rf #BIN_MIPS = ../../mips/sde/bin #VHDL_DIR = ../vhdl +#GCC_MIPS = $(BIN_MIPS)/gcc $(CFLAGS) +#AS_MIPS = $(BIN_MIPS)/as +#LD_MIPS = $(BIN_MIPS)/ld +#DUMP_MIPS = $(BIN_MIPS)/objdump # Customize for Windows CC_X86 = cl /O1 CP = copy RM = del -BIN_MIPS = ../gccmips_elf +BIN_MIPS = ..\gccmips_elf VHDL_DIR = ..\vhdl +GCC_MIPS = $(BIN_MIPS)\gcc $(CFLAGS) +AS_MIPS = $(BIN_MIPS)\as +LD_MIPS = $(BIN_MIPS)\ld +DUMP_MIPS = $(BIN_MIPS)\objdump CFLAGS = -O2 -Wall -c -s -GCC_MIPS = $(BIN_MIPS)/gcc $(CFLAGS) -AS_MIPS = $(BIN_MIPS)/as -LD_MIPS = $(BIN_MIPS)/ld -DUMP_MIPS = $(BIN_MIPS)/objdump all: convert_bin.exe tracehex.exe bintohex.exe ram_image.exe @echo make targets = count, opcodes, pi, test, run, tohex, toimage, rtos
|
 |