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