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