9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit fd6cb5e974b08a14e7ab48718decc7742d635e6b
parent 0fc16d5f9dac65a5f56e36c727e6833cf3bc8361
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sun, 23 Aug 2020 18:28:27 +0200

kernel: Recurse into arch directory

Without this recursion we do not generate a binary.

Change-Id: I7acc81edf066ef39abb4f3ffb6e9f6307cb1df5b

Diffstat:
Msrc/kernel/Makefile | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/kernel/Makefile b/src/kernel/Makefile @@ -10,9 +10,12 @@ OBJS =\ dev/builtin.o\ DIRS =\ - dev + arch\ + dev\ -all: builtin.o +all: arch + +arch: builtin.o builtin.o: $(OBJS) $(LD) $(PROJ_LDFLAGS) -r -o $@ $(OBJS)