From d4096c47db5187bca96c41cb70f93dc7a852dda4 Mon Sep 17 00:00:00 2001 From: kg68k <78926718+kg68k@users.noreply.github.com> Date: Wed, 20 Dec 2023 12:23:31 +0900 Subject: [PATCH] build: do not link dump.c --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 2376799..d4da784 100644 --- a/src/Makefile +++ b/src/Makefile @@ -14,7 +14,7 @@ CFLAGS = -O -Wall -fomit-frame-pointer -fstrength-reduce -D__DOS_INLINE__ -D__IO -DFSCK -SRCS = main.c disk.c sector.c root.c fat.c dump.c dir.c dirsub.c collect.c malloc.c print.c error.c +SRCS = main.c disk.c sector.c root.c fat.c dir.c dirsub.c collect.c malloc.c print.c error.c OBJS = $(subst .c,.o,$(SRCS)) TARGETS = fsck.x