URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [net/] [common/] [v2_0/] [tests/] [make.linux] - Rev 790
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Simple Linux makefile for network tests (host side)
#
CC = cc
CFLAGS = -O2 -g
ALL = nc_test_master nc_test_slave tcp_source tcp_sink linux_echo
ALL += nc6_test_master nc6_test_slave
all: ${ALL}
nc_test_master: nc_test_framework.h nc_test_master.c
$(CC) -o $@ ${CFLAGS} nc_test_master.c
nc_test_slave: nc_test_framework.h nc_test_slave.c
$(CC) -o $@ ${CFLAGS} nc_test_slave.c
tcp_source: tcp_source.c
$(CC) -o $@ ${CFLAGS} tcp_source.c
tcp_sink: tcp_sink.c
$(CC) -o $@ ${CFLAGS} tcp_sink.c
linux_echo: linux_echo.c
$(CC) -o $@ ${CFLAGS} linux_echo.c
Go to most recent revision | Compare with Previous | Blame | View Log