Move out libmsl functionality into separate libs
All checks were successful
Build documentation / build-and-deploy (push) Successful in 26s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 26s
This commit is contained in:
10
make/liballoc.mk
Normal file
10
make/liballoc.mk
Normal file
@@ -0,0 +1,10 @@
|
||||
all_liballoc:
|
||||
make -C liballoc platform=$(platform) all
|
||||
|
||||
clean_liballoc:
|
||||
make -C liballoc platform=$(platform) clean
|
||||
|
||||
format_liballoc:
|
||||
make -C liballoc platform=$(platform) format
|
||||
|
||||
.PHONY: all_liballoc clean_liballoc format_liballoc
|
||||
10
make/libprocess.mk
Normal file
10
make/libprocess.mk
Normal file
@@ -0,0 +1,10 @@
|
||||
all_libprocess:
|
||||
make -C libprocess platform=$(platform) all
|
||||
|
||||
clean_libprocess:
|
||||
make -C libprocess platform=$(platform) clean
|
||||
|
||||
format_libprocess:
|
||||
make -C libprocess platform=$(platform) format
|
||||
|
||||
.PHONY: all_libprocess clean_libprocess format_libprocess
|
||||
4
make/ufuncs.mk
Normal file
4
make/ufuncs.mk
Normal file
@@ -0,0 +1,4 @@
|
||||
define add_lib
|
||||
ldflags += -L ../$(1)/build -l:$(1).a
|
||||
cflags += -isystem ../$(1)
|
||||
endef
|
||||
Reference in New Issue
Block a user