/root/xiangm/stu_sys
|-- Makefile
|-- include
| |-- other
| | `-- other.h
| |-- student
| | `-- student.h
| |-- student_public.h
| `-- teacher
| `-- teacher.h
|-- src
| |-- Makefile
| |-- lib
| | |-- Makefile
| | |-- other
| | | `-- other.c
| | |-- student
| | | |-- Makefile
| | | `-- student.c
| | `-- teacher
| | `-- teacher.c
| `-- scli
| |-- Makefile
| |-- other
| | |-- Makefile
| | |-- other
| | |-- other.c
| | `-- other.db
| |-- student
| | |-- Makefile
| | |-- student
| | |-- student.c
| | `-- student.db
| `-- teacher
| |-- Makefile
| |-- teacher
| |-- teacher.c
| `-- teacher.db
`-- target
|-- other
| `-- other
|-- student
| `-- student
`-- teacher
`-- teacher
包括各个文件中的Makefile编写
1