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