diff options
Diffstat (limited to 'src/sys/Makefile')
-rw-r--r-- | src/sys/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sys/Makefile b/src/sys/Makefile index fdd9c54..6cdf604 100644 --- a/src/sys/Makefile +++ b/src/sys/Makefile @@ -6,12 +6,16 @@ LD = AS = .PHONY: all -all: os md +all: os lib md .PHONY: os os: cd os; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) +.PHONY: lib +lib: + cd lib; make CC=$(CC) LD=$(LD) AS=$(AS) TARGETDIR=$(TARGETDIR) + .PHONY: md md: cd $(TARGETDIR); make CC=$(CC) LD=$(LD) AS=$(AS) |