12 lines
116 B
Makefile
12 lines
116 B
Makefile
|
|
TARGET := bomb
|
|
|
|
|
|
section:
|
|
readelf -S $(TARGET)
|
|
|
|
syms:
|
|
readelf -s $(TARGET)
|
|
|
|
dis:
|
|
objdump -j $(sect) -d $(TARGET)
|