文件名称:mul_dir.zip
文件大小:13KB
文件格式:ZIP
更新时间:2023-03-26 08:29:27
linux C/C++
├── bin │ └── my_test ├── common │ ├── common.c │ ├── common.h │ └── Makefile ├── config │ ├── get_config │ │ ├── get_config.c │ │ ├── get_config.h │ │ └── Makefile │ ├── Makefile │ └── set_config │ ├── Makefile │ ├── set_config.c │ └── set_config.h ├── main │ ├── main.c │ └── Makefile ├── Makefile └── objs ├── common.o ├── get_config.o ├── main.o ├── Makefile └── set_config.o 7 directories, 19 files
【文件预览】:
mul_dir
----objs()
--------get_config.o(2KB)
--------common.o(2KB)
--------main.o(2KB)
--------set_config.o(2KB)
--------Makefile(131B)
----bin()
--------my_test(9KB)
----main()
--------main.c(377B)
--------main.o(2KB)
--------Makefile(325B)
----common()
--------common.c(228B)
--------common.h(152B)
--------Makefile(196B)
----config()
--------get_config()
--------Makefile(265B)
--------set_config()
----Makefile(567B)