Commit Graph
4 Commits
Author SHA1 Message Date
Clayton Craft 78df0ff393 makefile: ignore errors during clean
The file(s) being removed may not exist, but make shouldn't fail because
of it:

        $ make clean
        rm ./firmware/*.uf2
        rm: cannot remove './firmware/*.uf2': No such file or directory
        make: *** [Makefile:10: clean] Error 1
        $ echo $?
        2

this also removes leading ./ from path in clean, and assumes that `make
clean` is being run from the top level repo dir
2022-10-24 12:12:16 -07:00
Josh French 7e9cb93cf2 timestamp doesn't need to be a target 2022-10-13 10:22:16 -04:00
4f09557004 Specify setup prereqs
Co-authored-by: Ed Flanagan <[email protected]>
2022-10-12 16:08:31 -04:00
Josh French 1d14ffdb30 Use makefile for a reusable docker image 2022-10-11 11:13:38 -04:00