mirror of
https://gitlab.com/zephray/glider.git
synced 2024-12-22 13:43:16 +00:00
6 lines
133 B
Makefile
6 lines
133 B
Makefile
|
all: wbf_flash_decompress
|
||
|
|
||
|
wbf_flash_decompress: main.c
|
||
|
gcc -O1 -g main.c -o wbf_flash_decompress
|
||
|
clean:
|
||
|
rm -f wbf_flash_decompress
|