12 lines
229 B
Makefile
12 lines
229 B
Makefile
|
|
||
|
|
||
|
objects = crc.o script.o update_mbr.o
|
||
|
|
||
|
|
||
|
edit:$(objects)
|
||
|
gcc -o update_mbr $(objects) -static
|
||
|
rm -rf $(objects)
|
||
|
@cp -v update_mbr ../../../../tools/pack-bintools/src/update_mbr
|
||
|
|
||
|
clean:
|
||
|
rm -rf update_mbr $(objects)
|