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

Subversion Repositories plasma

[/] [plasma/] [trunk/] [kernel/] [makefile] - Diff between revs 394 and 402

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 394 Rev 402
# Makefile for Plasma RTOS and Plasma TCP/IP stack
# Makefile for Plasma RTOS and Plasma TCP/IP stack
ifeq ($(LANG),)
ifeq ($(LANG),)
# Customize for Windows
# Customize for Windows
# The MIPS gcc compiler must use the cygwin1.dll that came with the compiler.
# The MIPS gcc compiler must use the cygwin1.dll that came with the compiler.
CC_X86 = cl /O1 /nologo /I..\tools
CC_X86 = cl /O1 /nologo /I..\tools
CP = copy
CP = copy
RM = del
RM = del
DWIN32 = -DWIN32
DWIN32 = -DWIN32
BIN_MIPS = ..\gccmips_elf
BIN_MIPS = ..\gccmips_elf
TOOLS_DIR = ..\tools\\
TOOLS_DIR = ..\tools\\
TOOLS2_DIR = ..\tools
TOOLS2_DIR = ..\tools
APP_DIR = ..\App\\
APP_DIR = ..\App\\
LINUX_PWD =
LINUX_PWD =
ALIASING  =
ALIASING  =
GCC_MIPS  = $(BIN_MIPS)\gcc $(CFLAGS)
GCC_MIPS  = $(BIN_MIPS)\gcc $(CFLAGS)
AS_MIPS   = $(BIN_MIPS)\as
AS_MIPS   = $(BIN_MIPS)\as
LD_MIPS   = $(BIN_MIPS)\ld
LD_MIPS   = $(BIN_MIPS)\ld
DUMP_MIPS = $(BIN_MIPS)\objdump
DUMP_MIPS = $(BIN_MIPS)\objdump
CONVERT_BIN = $(TOOLS_DIR)convert_bin.exe
CONVERT_BIN = $(TOOLS_DIR)convert_bin.exe
OBJ = obj
OBJ = obj
CFLAGS_X86 = /c /DWIN32
CFLAGS_X86 = /c /DWIN32
LFLAGS_X86 =
LFLAGS_X86 =
else
else
# Customized for Linux
# Customized for Linux
# See the GNU GCC tab on the Opencores Plasma page
# See the GNU GCC tab on the Opencores Plasma page
CC_X86 = gcc -Wall -O -g -I../tools
CC_X86 = gcc -Wall -O -g -I../tools
CP = cp
CP = cp
RM = rm -rf
RM = rm -rf
DWIN32 =
DWIN32 =
TOOLS_DIR = ../tools/
TOOLS_DIR = ../tools/
TOOLS2_DIR = ../tools
TOOLS2_DIR = ../tools
APP_DIR = ../App/
APP_DIR = ../App/
LINUX_PWD = ./
LINUX_PWD = ./
ALIASING  = -fno-strict-aliasing
ALIASING  = -fno-strict-aliasing
GCC_MIPS  = $(BIN_MIPS)mips-elf-gcc $(CFLAGS)
GCC_MIPS  = $(BIN_MIPS)mips-elf-gcc $(CFLAGS)
AS_MIPS   = $(BIN_MIPS)mips-elf-as
AS_MIPS   = $(BIN_MIPS)mips-elf-as
LD_MIPS   = $(BIN_MIPS)mips-elf-ld
LD_MIPS   = $(BIN_MIPS)mips-elf-ld
DUMP_MIPS = $(BIN_MIPS)mips-elf-objdump
DUMP_MIPS = $(BIN_MIPS)mips-elf-objdump
CONVERT_BIN = $(TOOLS_DIR)convert_bin.exe
CONVERT_BIN = $(TOOLS_DIR)convert_bin.exe
#CONVERT_BIN = $(BIN_MIPS)mips-elf-objcopy -I elf32-big -O binary test.axf test.bin
#CONVERT_BIN = $(BIN_MIPS)mips-elf-objcopy -I elf32-big -O binary test.axf test.bin
OBJ = o
OBJ = o
CFLAGS_X86 = -c -DWIN32 -DLINUX
CFLAGS_X86 = -c -DWIN32 -DLINUX
LFLAGS_X86 = -lm
LFLAGS_X86 = -lm
endif
endif
# Use software multiplier (don't use mult.vhd)
# Use software multiplier (don't use mult.vhd)
CFLAGS_SW_MULT = -mno-mul -DUSE_SW_MULT
CFLAGS_SW_MULT = -mno-mul -DUSE_SW_MULT
# Use 16 fewer registers (make reg_bank.vhd smaller)
# Use 16 fewer registers (make reg_bank.vhd smaller)
CFLAGS_FEW_REGS = -ffixed-t0 -ffixed-t1 -ffixed-t2 -ffixed-t3 -ffixed-t4 -ffixed-t5 -ffixed-t6 -ffixed-t7 -ffixed-s0 -ffixed-s1 -ffixed-s2 -ffixed-s3 -ffixed-s4 -ffixed-s5 -ffixed-s6 -ffixed-s7
CFLAGS_FEW_REGS = -ffixed-t0 -ffixed-t1 -ffixed-t2 -ffixed-t3 -ffixed-t4 -ffixed-t5 -ffixed-t6 -ffixed-t7 -ffixed-s0 -ffixed-s1 -ffixed-s2 -ffixed-s3 -ffixed-s4 -ffixed-s5 -ffixed-s6 -ffixed-s7
CFLAGS = -O2 -Wall -c -s -I$(TOOLS2_DIR) -msoft-float -fno-builtin
CFLAGS = -O2 -Wall -c -s -I$(TOOLS2_DIR) -msoft-float -fno-builtin
#CFLAGS += $(CFLAGS_SW_MULT)
#CFLAGS += $(CFLAGS_SW_MULT)
#CFLAGS += $(CFLAGS_FEW_REGS)
#CFLAGS += $(CFLAGS_FEW_REGS)
# Build just the Plasma RTOS for Plasma CPU
# Build just the Plasma RTOS for Plasma CPU
rtos:
rtos:
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) uart.c
        $(GCC_MIPS) uart.c
        $(GCC_MIPS) rtos_test.c
        $(GCC_MIPS) rtos_test.c
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) math.c $(ALIASING)
        $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \
        $(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
        boot.o rtos.o libc.o uart.o rtos_test.o math.o
        $(CONVERT_BIN)
        $(CONVERT_BIN)
        @sort test2.map
        @sort test2.map
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
# Build the Plasma RTOS, Plasma TCP/IP stack, and web server for the Plasma CPU
# Build the Plasma RTOS, Plasma TCP/IP stack, and web server for the Plasma CPU
# Use the serial port and etermip for TCP/IP packets
# Use the serial port and etermip for TCP/IP packets
rtos_tcpip:
rtos_tcpip:
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) uart.c
        $(GCC_MIPS) uart.c
        $(GCC_MIPS) rtos_test.c -DINCLUDE_HTML -DINCLUDE_CONSOLE
        $(GCC_MIPS) rtos_test.c -DINCLUDE_HTML -DINCLUDE_CONSOLE
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) tcpip.c -DINCLUDE_FILESYS
        $(GCC_MIPS) tcpip.c -DINCLUDE_FILESYS
        $(GCC_MIPS) http.c -DINCLUDE_FILESYS -DEXAMPLE_HTML
        $(GCC_MIPS) http.c -DINCLUDE_FILESYS -DEXAMPLE_HTML
        $(GCC_MIPS) netutil.c
        $(GCC_MIPS) netutil.c
        $(GCC_MIPS) filesys.c
        $(GCC_MIPS) filesys.c
        $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \
        $(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 tcpip.o \
        boot.o rtos.o libc.o uart.o rtos_test.o math.o tcpip.o \
        http.o netutil.o filesys.o
        http.o netutil.o filesys.o
        $(CONVERT_BIN)
        $(CONVERT_BIN)
        @sort test2.map
        @sort test2.map
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
# Use Ethernet for TCP/IP packets, use flash file system
# Use Ethernet for TCP/IP packets, use flash file system
rtos_tcpip_eth:
rtos_tcpip_eth:
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) uart.c -DNO_PACKETS
        $(GCC_MIPS) uart.c -DNO_PACKETS
        $(GCC_MIPS) rtos_test.c -DINCLUDE_ETH -DINCLUDE_CONSOLE
        $(GCC_MIPS) rtos_test.c -DINCLUDE_ETH -DINCLUDE_CONSOLE
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) tcpip.c -DINCLUDE_FILESYS
        $(GCC_MIPS) tcpip.c -DINCLUDE_FILESYS
        $(GCC_MIPS) http.c -DINCLUDE_FILESYS -DEXAMPLE_HTML
        $(GCC_MIPS) http.c -DINCLUDE_FILESYS -DEXAMPLE_HTML
        $(GCC_MIPS) netutil.c -DINCLUDE_FLASH -DDLL_SETUP
        $(GCC_MIPS) netutil.c -DINCLUDE_FLASH -DDLL_SETUP
        $(GCC_MIPS) filesys.c -DINCLUDE_FLASH
        $(GCC_MIPS) filesys.c -DINCLUDE_FLASH
        $(GCC_MIPS) ethernet.c
        $(GCC_MIPS) ethernet.c
        $(GCC_MIPS) flash.c
        $(GCC_MIPS) flash.c
        $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \
        $(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 tcpip.o \
        boot.o rtos.o libc.o uart.o rtos_test.o math.o tcpip.o \
        http.o netutil.o filesys.o ethernet.o flash.o
        http.o netutil.o filesys.o ethernet.o flash.o
        $(CONVERT_BIN)
        $(CONVERT_BIN)
        @sort test2.map
        @sort test2.map
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
# Build full test application.  (Use rtos_tcpip_eth instead.)
# Build full test application.  (Use rtos_tcpip_eth instead.)
rtosfull:
rtosfull:
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(AS_MIPS) -o boot.o $(TOOLS_DIR)boot.asm
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) rtos.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) libc.c
        $(GCC_MIPS) uart.c -DNO_PACKETS
        $(GCC_MIPS) uart.c -DNO_PACKETS
        $(GCC_MIPS) rtos_test.c -DINCLUDE_ETH -DINCLUDE_CONSOLE
        $(GCC_MIPS) rtos_test.c -DINCLUDE_ETH -DINCLUDE_CONSOLE
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) math.c $(ALIASING)
        $(GCC_MIPS) tcpip.c -DINCLUDE_FILESYS
        $(GCC_MIPS) tcpip.c -DINCLUDE_FILESYS
        $(GCC_MIPS) http.c -DINCLUDE_FILESYS
        $(GCC_MIPS) http.c -DINCLUDE_FILESYS
        $(GCC_MIPS) netutil.c -DINCLUDE_FLASH -DDLL_SETUP
        $(GCC_MIPS) netutil.c -DINCLUDE_FLASH -DDLL_SETUP
        $(GCC_MIPS) filesys.c -DINCLUDE_FLASH
        $(GCC_MIPS) filesys.c -DINCLUDE_FLASH
        $(GCC_MIPS) ethernet.c
        $(GCC_MIPS) ethernet.c
        $(GCC_MIPS) flash.c
        $(GCC_MIPS) flash.c
        $(GCC_MIPS) -I. $(APP_DIR)html.c -DMainThread=HtmlThread
        $(GCC_MIPS) -I. $(APP_DIR)html.c -DMainThread=HtmlThread
        $(GCC_MIPS) -I. $(APP_DIR)image.c
        $(GCC_MIPS) -I. $(APP_DIR)image.c
        $(GCC_MIPS) -I. $(APP_DIR)tictac.c
        $(GCC_MIPS) -I. $(APP_DIR)tictac.c
        $(GCC_MIPS) -I. $(APP_DIR)tic3d.c
        $(GCC_MIPS) -I. $(APP_DIR)tic3d.c
        $(GCC_MIPS) -I. $(APP_DIR)connect4.c
        $(GCC_MIPS) -I. $(APP_DIR)connect4.c
        $(LD_MIPS) -Ttext 0x10000000 -eentry -Map test.map -s -N -o test.axf \
        $(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 tcpip.o \
        boot.o rtos.o libc.o uart.o rtos_test.o math.o tcpip.o \
        http.o netutil.o filesys.o ethernet.o flash.o \
        http.o netutil.o filesys.o ethernet.o flash.o \
        html.o image.o tictac.o tic3d.o connect4.o
        html.o image.o tictac.o tic3d.o connect4.o
        $(CONVERT_BIN)
        $(CONVERT_BIN)
        @sort test2.map
        @sort test2.map
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
# Create a separate Dynamically Linked Library executable
# Create a separate Dynamically Linked Library executable
# ftp test.bin to /flash/web/dlltest
# ftp test.bin to /flash/web/dlltest
# telnet to board and execute "dlltest"
# telnet to board and execute "dlltest"
dlltest:
dlltest:
        $(GCC_MIPS) -G0 dlltest.c
        $(GCC_MIPS) -G0 dlltest.c
        $(LD_MIPS) -Ttext 0x10100000 -s -N -o test.axf dlltest.o
        $(LD_MIPS) -Ttext 0x10100000 -s -N -o test.axf dlltest.o
        $(CONVERT_BIN)
        $(CONVERT_BIN)
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
        @$(DUMP_MIPS) --disassemble test.axf > test.lst
# Test the RTOS running on a PC
# Test the RTOS running on a PC
testrtos:
testrtos:
        @$(CC_X86) $(CFLAGS_X86) rtos.c
        @$(CC_X86) $(CFLAGS_X86) rtos.c
 
        @$(CC_X86) $(CFLAGS_X86) rtos_ex.c
        @$(CC_X86) $(CFLAGS_X86) libc.c
        @$(CC_X86) $(CFLAGS_X86) libc.c
        @$(CC_X86) $(CFLAGS_X86) uart.c
        @$(CC_X86) $(CFLAGS_X86) uart.c
        @$(CC_X86) $(CFLAGS_X86) rtos_test.c
        @$(CC_X86) $(CFLAGS_X86) rtos_test.c
        @$(CC_X86) $(CFLAGS_X86) math.c $(ALIASING)
        @$(CC_X86) $(CFLAGS_X86) math.c $(ALIASING)
        @$(CC_X86) $(LFLAGS_X86) -o testrtos.exe rtos.$(OBJ) libc.$(OBJ) uart.$(OBJ) rtos_test.$(OBJ) math.$(OBJ)
        @$(CC_X86) $(LFLAGS_X86) -o testrtos.exe rtos.$(OBJ) rtos_ex.$(OBJ) libc.$(OBJ) uart.$(OBJ) rtos_test.$(OBJ) math.$(OBJ)
        $(LINUX_PWD)testrtos.exe
        $(LINUX_PWD)testrtos.exe
# Test the TCP/IP protocol stack running on a PC (requires Windows)
# Test the TCP/IP protocol stack running on a PC (requires Windows)
testip:
testip:
        @$(CC_X86) $(CFLAGS_X86) tcpip.c
        @$(CC_X86) $(CFLAGS_X86) tcpip.c
        @$(CC_X86) $(CFLAGS_X86) http.c /DEXAMPLE_HTML
        @$(CC_X86) $(CFLAGS_X86) http.c /DEXAMPLE_HTML
        @$(CC_X86) $(CFLAGS_X86) netutil.c
        @$(CC_X86) $(CFLAGS_X86) netutil.c
        @$(CC_X86) $(CFLAGS_X86) filesys.c
        @$(CC_X86) $(CFLAGS_X86) filesys.c
        @$(CC_X86) $(CFLAGS_X86) libc.c /I$(TOOLS_DIR)
        @$(CC_X86) $(CFLAGS_X86) libc.c /I$(TOOLS_DIR)
        @$(CC_X86) $(CFLAGS_X86) /DSIMULATE_PLASMA $(TOOLS_DIR)etermip.c
        @$(CC_X86) $(CFLAGS_X86) /DSIMULATE_PLASMA $(TOOLS_DIR)etermip.c
        @$(CC_X86) $(CFLAGS_X86) os_stubs.c
        @$(CC_X86) $(CFLAGS_X86) os_stubs.c
        @$(CC_X86) -o testip.exe etermip.obj $(TOOLS_DIR)wpcap.lib \
        @$(CC_X86) -o testip.exe etermip.obj $(TOOLS_DIR)wpcap.lib \
        tcpip.obj http.obj netutil.obj filesys.obj libc.obj os_stubs.obj
        tcpip.obj http.obj netutil.obj filesys.obj libc.obj os_stubs.obj
        @echo Try http://plasmb/.  Try telnet plasmb.  Try ftp plasmb.
        @echo Try http://plasmb/.  Try telnet plasmb.  Try ftp plasmb.
        $(LINUX_PWD)testip.exe
        $(LINUX_PWD)testip.exe
clean:
clean:
        -$(RM) *.o *.obj *.axf *.map *.lst *.hex *.txt *.bin *.exe
        -$(RM) *.o *.obj *.axf *.map *.lst *.hex *.txt *.bin *.exe
# Run a Plasma CPU opcode simulator (can execute rtos target)
# Run a Plasma CPU opcode simulator (can execute rtos target)
run:
run:
        @$(TOOLS_DIR)mlite.exe test.bin
        @$(TOOLS_DIR)mlite.exe test.bin
disassemble:
disassemble:
        -@$(TOOLS_DIR)mlite.exe test.bin BD > test.txt
        -@$(TOOLS_DIR)mlite.exe test.bin BD > test.txt
# Start the EtermIP terminal program to download the code to the Plasma CPU
# Start the EtermIP terminal program to download the code to the Plasma CPU
# and permit an Ethernet packets to be transfered.
# and permit an Ethernet packets to be transfered.
download:
download:
        @echo Reset board before downloading code
        @echo Reset board before downloading code
        $(TOOLS_DIR)etermip.exe
        $(TOOLS_DIR)etermip.exe
 
 

powered by: WebSVN 2.1.0

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