diff options
author | Ian Moffett <ian@osmora.org> | 2025-08-02 02:47:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-08-02 02:47:12 -0400 |
commit | 55fca707f04dbcbc92201956da85d3949f404841 (patch) | |
tree | 01e84aa6f7a2d54ad1f52afd9b682968ee4c09aa /lib/Makefile | |
parent | 2c6c07311295fadf2e6bbe855196beecefb3f128 (diff) |
build/lib: Add Makefile to libs/
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/Makefile b/lib/Makefile new file mode 100644 index 0000000..a201891 --- /dev/null +++ b/lib/Makefile @@ -0,0 +1,8 @@ +LDSCRIPT = +USRDIR = +ROOT = +ARGS = -I$(ROOT)/builddeps LDSCRIPT=$(LDSCRIPT) USRDIR=$(USRDIR) ROOT=$(ROOT) + +.PHONY: all +all: + make -C libc/ $(ARGS) |