diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2023-01-18 22:29:32 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2023-01-18 22:29:32 -0700 |
| commit | d93ca841f64cfe6a5ddcb45510becadd83358d84 (patch) | |
| tree | 8741945dc2069bde9aa6473f4c529d55e7f1da4c /ch-flash/Makefile | |
| parent | adb7d9e96ed55c7be5bf2da435c1e568dc11ab8f (diff) | |
| download | ch573-d93ca841f64cfe6a5ddcb45510becadd83358d84.tar.gz ch573-d93ca841f64cfe6a5ddcb45510becadd83358d84.tar.bz2 ch573-d93ca841f64cfe6a5ddcb45510becadd83358d84.zip | |
Start implementing ch-flash.
This is a program forked from isp55e0, but with the ability to wait for
the device to be plugged in before flashing.
I will perhaps add other fetaures to the program which will work better
with my workflow, but this is the big change for now.
Diffstat (limited to 'ch-flash/Makefile')
| -rw-r--r-- | ch-flash/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ch-flash/Makefile b/ch-flash/Makefile new file mode 100644 index 0000000..ba21548 --- /dev/null +++ b/ch-flash/Makefile @@ -0,0 +1,5 @@ +ch-flash: ch-flash.c ch-flash.h + gcc -O2 -o ch-flash ch-flash.c -lusb-1.0 + +clean: + rm -rf ch-flash |