change btld_conf.h

remove inclde u.h
This commit is contained in:
2024-12-05 15:31:56 +09:00
parent dce27c5d22
commit 7466f0ff8c
6 changed files with 13 additions and 7 deletions

View File

@@ -6,12 +6,12 @@ SRCS = installboot.c
OBJS = installboot.o
CFLAGS = -g -Wall -Werror
CPPFLAGS = -I $(SDIR)
CPPFLAGS = -I $(SDIR)
${PROG}: $(OBJS)
$(CC) $(CFLAGS) -o $(BDIR)/$(PROG) $(OBJS)
$(OBJS): $(SDIR)/u.h $(SDIR)/btld_conf.h $(SDIR)/btld_disk.h elf32.h
$(OBJS): $(SDIR)/btld_conf.h $(SDIR)/btld_disk.h elf32.h
clean:
rm -rf $(PROG) $(OBJS)