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