From 5b96f9961da15255bfd37a45b95753adfcd3ba93 Mon Sep 17 00:00:00 2001 From: yenru0 Date: Mon, 20 Oct 2025 22:19:26 +0900 Subject: [PATCH] initializing Makefile --- labs/02_bomblab/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 labs/02_bomblab/Makefile 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