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