From 14e3f70e7b62d2c5c3b934d4eba214d72e198830 Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Sat, 6 Jul 2024 22:49:17 -0400 Subject: Restructured the Project --- makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'makefile') diff --git a/makefile b/makefile index 04b267f..9bb2964 100755 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ CC=gcc CFLAGS=-Wall -Werror -pedantic --std=c17 -OBJS=qdme.o elf.o -SRCS=qdme.c elf.c +OBJS=qdme.o elf.o instruction.o load.o +SRCS=qdme.c elf.c instruction.c load.c TARGET=qdme %.o: %.c %.h @@ -17,3 +17,4 @@ qdme: $(OBJS) clean: rm -rf $(TARGET) $(OBJS) + -- cgit v1.2.3