diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2024-07-06 22:49:17 -0400 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2024-07-06 22:49:17 -0400 |
| commit | 14e3f70e7b62d2c5c3b934d4eba214d72e198830 (patch) | |
| tree | c9da7a92f57882bed3a624eb50eceaa04e21056e /makefile | |
| parent | aa317d9a7aec97d478bd5f5af3305642a4f258c5 (diff) | |
Restructured the Project
Diffstat (limited to 'makefile')
| -rwxr-xr-x | makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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) + |
