diff options
author | Ian Moffett <industrial.reformer@gmail.com> | 2024-04-06 17:28:33 -0400 |
---|---|---|
committer | Ian Moffett <industrial.reformer@gmail.com> | 2024-04-06 17:28:33 -0400 |
commit | b7005116df8957e576a7a2401366c357b7dcc0a9 (patch) | |
tree | 097f769d9175c4d0cc3338c2ff266dc5e4d3bf8b /Makefile | |
parent | d0230cb37527e18877013f992f3c88a0f5a4e1e8 (diff) |
Use inline assembly
Signed-off-by: Ian Moffett <industrial.reformer@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,8 +1,7 @@ CFLAGS = -pedantic -Iinclude/ CFILES = src/main.c -ASMFILES = src/sse_accel.S src/avx_accel.S CC = gcc -bin/fobfuscate: $(CFILES) $(ASMFILES) +bin/fobfuscate: $(CFILES) mkdir -p $(@D) $(CC) $(CFLAGS) $^ -o $@ |