diff --git a/labs/02_bomblab/Makefile b/labs/02_bomblab/Makefile new file mode 100644 index 0000000..87a5c40 --- /dev/null +++ b/labs/02_bomblab/Makefile @@ -0,0 +1,12 @@ + +TARGET := bomb + + +section: + readelf -S $(TARGET) + +syms: + readelf -s $(TARGET) + +dis: + objdump -j $(sect) -d $(TARGET) \ No newline at end of file