Skip to content

Commit 18fe80c

Browse files
committed
GNUmakefile: add back the dependency on the linker script.
1 parent 7e61705 commit 18fe80c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GNUmakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ HEADERS=multiboot.h
6565
OBJS = $(ASM_SRC:.S=.o) $(FORTH_SRC:.fs=.o) $(TESTING_SRC:.fs=.o) $(LISP_SRC:.lisp=.o)
6666

6767
$(KERNEL): $(OBJS) $(LINKER_SCRIPT)
68-
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
68+
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS)
6969

7070
clean:
7171
-rm -f *.[do] kernel/*.[do] tests/*.[do] app/*.[do] lisp/*.[do] $(KERNEL) BUILTIN-FILES.S

0 commit comments

Comments
 (0)