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 0000000000000000000000000000000000000000..dedf98e1482e77908269c8ecf8a987feb726fa4e --- /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 0000000000000000000000000000000000000000..b00575214c2b2694842564a09a477cfd7441930c --- /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