URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [fpga/] [mc/] [boards/] [xsa-xst-3/] [Makefile] - Rev 314
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for ECO32 on XESS XSA-XST-3 board
#
BUILD = ../../../../build
.PHONY: all install clean
all: build/eco32.bit
install: build/eco32.bit
$(BUILD)/bin/bit2exo 0x180000 \
build/eco32.bit build/eco32.exo
mkdir -p $(BUILD)/eco32/xsa-xst-3
cp build/eco32.bit $(BUILD)/eco32/xsa-xst-3
cp build/eco32.exo $(BUILD)/eco32/xsa-xst-3
cp doc/README $(BUILD)/eco32/xsa-xst-3
clean:
mv build/eco32.xise .
mv build/eco32.bit .
rm -rf build/*
mv eco32.xise build
mv eco32.bit build
rm -f *~
Go to most recent revision | Compare with Previous | Blame | View Log