diff options
| author | Carlos Maiolino <[email protected]> | 2025-07-10 22:20:01 +0200 |
|---|---|---|
| committer | Carlos Maiolino <[email protected]> | 2025-07-10 22:20:01 +0200 |
| commit | 20834dcc57537cd95260a4a22f5d91a027adfd35 (patch) | |
| tree | 60f21143382380c3cd54110b4134f6fa98000a9b /x86_64/Makefile | |
| parent | 8c6fc0c15415b32080a848bbde640e104098cf13 (diff) | |
Add x86_64 asm
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'x86_64/Makefile')
| -rw-r--r-- | x86_64/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x86_64/Makefile b/x86_64/Makefile new file mode 100644 index 0000000..4096a79 --- /dev/null +++ b/x86_64/Makefile @@ -0,0 +1,13 @@ + +OBJS = exit.o arithmetic.o reg_size.o jmp_havoc.o exponent.o mul_by_add.o + +all: $(OBJS) + ld -o exit exit.o + ld -o arithmetic arithmetic.o + ld -o reg_size reg_size.o + ld -o jmp_havoc jmp_havoc.o + ld -o exponent exponent.o + ld -o mul_by_add mul_by_add.o + +clean: + rm $(OBJS) |
