diff options
Diffstat (limited to 'src/makefile')
| -rw-r--r-- | src/makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/makefile b/src/makefile index 5dff86d..8ecc8f2 100644 --- a/src/makefile +++ b/src/makefile @@ -1,6 +1,7 @@ -pixeldata-ball.vhd: pixeldata-ball-top.vhd bitmap-ball.vhd pixeldata-ball-bottom.vhd - cat $^ > $@ +.PHONY: clean -bitmap-ball.vhd: ball.png +bitmap-ball.coe: ball.png python3 bitmap-ball.py $< > $@ +clean: + $(RM) bitmap-ball.coe |