summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorIan Moffett <industrial.reformer@gmail.com>2024-04-06 17:28:33 -0400
committerIan Moffett <industrial.reformer@gmail.com>2024-04-06 17:28:33 -0400
commitb7005116df8957e576a7a2401366c357b7dcc0a9 (patch)
tree097f769d9175c4d0cc3338c2ff266dc5e4d3bf8b /Makefile
parentd0230cb37527e18877013f992f3c88a0f5a4e1e8 (diff)
Use inline assembly
Signed-off-by: Ian Moffett <industrial.reformer@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bdc65df..844365f 100644
--- a/Makefile
+++ b/Makefile
@@ -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 $@