URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [monitor/] [loadserv/] [Makefile] - Rev 331
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for serial line load server
#
BUILD = ../../build
.PHONY: all install clean
all: loadserv
install: loadserv
mkdir -p $(BUILD)/bin
cp loadserv $(BUILD)/bin
loadserv: loadserv.c
gcc -g -Wall -o loadserv loadserv.c
clean:
rm -f *~ loadserv
Go to most recent revision | Compare with Previous | Blame | View Log