mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-02 19:09:16 +00:00
feat(userspace/libs): add libexpat, libffi and libxml2
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
11
Userspace/libs/gcc/Makefile
Normal file
11
Userspace/libs/gcc/Makefile
Normal file
@ -0,0 +1,11 @@
|
||||
NAME=gcc
|
||||
OBJECT_NAME=lib$(NAME).a
|
||||
OUTPUT_DIR=$(WORKSPACE_DIR)/out/lib/
|
||||
CRTBEGIN_PATH = $(shell $(CC) -print-file-name=libgcc.a)
|
||||
|
||||
build: $(OBJECT_NAME)
|
||||
|
||||
$(OBJECT_NAME):
|
||||
cp $(CRTBEGIN_PATH) $(OUTPUT_DIR)
|
||||
|
||||
clean:
|
Reference in New Issue
Block a user