13 lines
144 B
Makefile
13 lines
144 B
Makefile
|
|
||
|
|
||
|
objects = add_hash.o
|
||
|
|
||
|
|
||
|
edit:$(objects)
|
||
|
gcc -static -o add_hash $(objects)
|
||
|
rm -rf $(objects)
|
||
|
|
||
|
|
||
|
clean:
|
||
|
rm -rf genchecksum_uboot $(objects)
|