From 8164393a45cfd1c93526323cabb368c3720e3916 Mon Sep 17 00:00:00 2001 From: wwszzm <1640396198@qq.com> Date: Fri, 12 Sep 2025 14:52:20 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9C=80=E4=BD=B3=E5=AE=9E?= =?UTF-8?q?=E8=B7=B5Makefile=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../testdemo/asm_trans/mult_inline_asm/Makefile | 10 ++++++++++ .../testdemo/asm_trans/single_inline_asm/Makefile | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 Porting_advisor/testdemo/asm_trans/mult_inline_asm/Makefile create mode 100644 Porting_advisor/testdemo/asm_trans/single_inline_asm/Makefile diff --git a/Porting_advisor/testdemo/asm_trans/mult_inline_asm/Makefile b/Porting_advisor/testdemo/asm_trans/mult_inline_asm/Makefile new file mode 100644 index 0000000..dedf98e --- /dev/null +++ b/Porting_advisor/testdemo/asm_trans/mult_inline_asm/Makefile @@ -0,0 +1,10 @@ +TARGET = gcd +CC = gcc + +all: $(TARGET) + +$(TARGET): gcd.c + $(CC) -o $(TARGET) gcd.c + +clean: + rm -f $(TARGET) \ No newline at end of file diff --git a/Porting_advisor/testdemo/asm_trans/single_inline_asm/Makefile b/Porting_advisor/testdemo/asm_trans/single_inline_asm/Makefile new file mode 100644 index 0000000..b005752 --- /dev/null +++ b/Porting_advisor/testdemo/asm_trans/single_inline_asm/Makefile @@ -0,0 +1,10 @@ +TARGET = swap +CC = gcc + +all: $(TARGET) + +$(TARGET): swap.c + $(CC) -o $(TARGET) swap.c + +clean: + rm -f $(TARGET) \ No newline at end of file -- Gitee