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