aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorWojciech Kosior <kwojtus@protonmail.com>2020-09-01 10:54:59 +0200
committerWojciech Kosior <kwojtus@protonmail.com>2020-09-01 11:04:22 +0200
commitee1f6c47e1eff920068f4bceaf604f9535a2e8a9 (patch)
tree580eb001a72601d254bb29cc348a529490f84808 /src/Makefile
parentcd02ddff8886aa1db29f80d3cc5cf99a349d8258 (diff)
downloadAGH-engineering-thesis-ee1f6c47e1eff920068f4bceaf604f9535a2e8a9.tar.gz
AGH-engineering-thesis-ee1f6c47e1eff920068f4bceaf604f9535a2e8a9.zip
start anew
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index c528906..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-all : example.bin
-
-example.blif : example.v
- git-yosys -p 'synth_ice40 -top top -blif example.blif' example.v
-
-example.json : example.v
- git-yosys -p 'synth_ice40 -top top -json example.json' example.v
-
-example.asc : example.json mapping.pcf
- git-nextpnr-ice40 --hx8k --asc example.asc --pcf mapping.pcf --json example.json --package ct256
-
-example.bin : example.asc
- git-icepack example.asc example.bin
-
-prog : example.bin
- sudo iceprogduino example.bin
-
-clean :
- -rm example.bin example.asc example.blif example.json
-
-.PHONY : clean all