14 lines
205 B
Makefile
14 lines
205 B
Makefile
|
|
||
|
|
||
|
objects = update_fdt.o
|
||
|
|
||
|
|
||
|
edit:$(objects)
|
||
|
gcc -o update_uboot_fdt $(objects) -static
|
||
|
rm -rf $(objects)
|
||
|
|
||
|
cp update_uboot_fdt ../../../../tools/pack-bintools/src/
|
||
|
|
||
|
clean:
|
||
|
rm -rf update_fdt $(objects)
|