From 1122a9c5416a11b180a7251546de041f2670ec7b Mon Sep 17 00:00:00 2001 From: yenru0 Date: Mon, 20 Oct 2025 22:19:26 +0900 Subject: [PATCH] initializing Makefile --- 02_bomblab/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 02_bomblab/Makefile diff --git a/02_bomblab/Makefile b/02_bomblab/Makefile new file mode 100644 index 0000000..87a5c40 --- /dev/null +++ b/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