diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-18 15:31:56 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-18 15:31:56 -0400 |
commit | a84c4e18ed47d015d2abbaa2a4411a64a0ade18f (patch) | |
tree | d9e0f792c817465ef72a7e2627f911fa8a925ac1 /src/sys/Makefile | |
parent | e633b7ef95c91ded3e849af0e622a4a98470ef0d (diff) |
build: Allow each subsystem to have their own conf
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r-- | src/sys/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile index 78c3762..8ab7999 100644 --- a/src/sys/Makefile +++ b/src/sys/Makefile @@ -10,11 +10,11 @@ all: os lib md .PHONY: os os: - cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) CONF=$(CONF) + cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) TOOLS=$(TOOLS) .PHONY: md md: - cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) CONF=$(CONF) + cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) TOOLS=$(TOOLS) .PHONY: clean clean: |