Home
last modified time | relevance | path

Searched refs:find (Results 1 – 23 of 23) sorted by relevance

/DragonOS-0.1.3/user/apps/test_signal/
DMakefile3 …x86-64 -z muldefs -o $(tmp_output_dir)/test_signal $(shell find . -name "*.o") $(shell find $(sys…
/DragonOS-0.1.3/user/apps/about/
DMakefile6 …elf64-x86-64 -z muldefs -o $(tmp_output_dir)/about $(shell find . -name "*.o") $(shell find $(sys…
/DragonOS-0.1.3/kernel/src/
DMakefile2 DIRS := . $(shell find $(SUBDIR_ROOTS) -type d)
41 …$(LD) -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86…
57 @echo $(shell find . -name "*.o")
58 …$(LD) -b elf64-x86-64 -z muldefs -o kernel head.o main.o $(shell find . -name "*.o") ../target/x86…
/DragonOS-0.1.3/user/apps/shell/
DMakefile3 …elf64-x86-64 -z muldefs -o $(tmp_output_dir)/shell $(shell find . -name "*.o") $(shell find $(sys…
/DragonOS-0.1.3/kernel/src/filesystem/procfs/
DMakefile5 kernel_fs_procfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/filesystem/rootfs/
DMakefile5 kernel_fs_rootfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/filesystem/vfs/
DMakefile5 kernel_fs_vfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/filesystem/devfs/
DMakefile5 kernel_fs_devfs_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/filesystem/fat32/
DMakefile5 kernel_fs_fat32_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/sched/
DMakefile5 kernel_sched_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/arch/x86_64/asm/
DMakefile6 kernel_arch_x86_64_asm_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/libs/sys/
DMakefile4 kernel_lib_sys_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/driver/hid/usbhid/
DMakefile5 kernel_driver_usbhid_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/user/libs/libc/src/arch/x86_64/
DMakefile1 libc_arch_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/user/
DMakefile4 DIRS := . $(shell find $(SUBDIR_ROOTS) -type d)
47 $(AR) crvs $(ROOT_PATH)/bin/sysroot/usr/lib/libc.a $(shell find ./libs/* -name "*.o")
48 $(shell find ./libs/* -name "*.o" | xargs -I {} cp {} $(ROOT_PATH)/bin/sysroot/usr/lib/)
/DragonOS-0.1.3/kernel/src/arch/x86_64/
DMakefile6 kernel_arch_x86_64_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/driver/hid/
DMakefile6 kernel_driver_hid_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/libs/
DMakefile6 kernel_lib_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/filesystem/
DMakefile5 kernel_fs_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/kernel/src/process/
DMakefile5 kernel_process_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/user/libs/libc/src/
DMakefile17 libc_objs:= $(shell find ./*.c)
/DragonOS-0.1.3/
DREADME_EN.md97 If you find any violation of the open source license, we welcome you to send email feedback! Let's …
/DragonOS-0.1.3/kernel/src/ipc/
Dsignal_types.rs482 pub fn find(&self, sig: SignalNumber) -> (Option<&siginfo>, bool) { in find() method