Skip to content

Instantly share code, notes, and snippets.

@polynomialspace
polynomialspace / Makefile
Last active December 10, 2018 09:08
Quick and dirty makefile to build migen or yosys and dependencies on fedora (Why isnt this just a shell script?)
all: migen
deps:
sudo yum install git make gcc gcc-c++
icestorm: deps
sudo yum install -y python3 libftdi-devel \
&& git clone https://github.com/cliffordwolf/icestorm \
&& cd icestorm \
&& make -j $(nproc) \