summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorJacob McDonnell <jacob@jacobmcdonnell.com>2024-05-28 00:33:52 -0400
committerJacob McDonnell <jacob@jacobmcdonnell.com>2024-05-28 00:33:52 -0400
commit83b0b878db0bcb29f7fb70a9fbcab30d793f7b1e (patch)
tree618d8206836a6d29d3dc473380167ddf79d7a403 /makefile
parent0f1f3a13ac3c3b23510e142f042d25ca17de2b2f (diff)
Initial Implementation of ELF
Diffstat (limited to 'makefile')
-rwxr-xr-xmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 389b5c5..04b267f 100755
--- a/makefile
+++ b/makefile
@@ -1,7 +1,7 @@
CC=gcc
CFLAGS=-Wall -Werror -pedantic --std=c17
-OBJS=qdme.o
-SRCS=qdme.c
+OBJS=qdme.o elf.o
+SRCS=qdme.c elf.c
TARGET=qdme
%.o: %.c %.h