├── .gitignore ├── Makefile.env ├── README.md ├── c ├── multilevel │ ├── Makefile │ ├── Makefile.env │ ├── inc │ │ ├── a.h │ │ ├── header.h │ │ └── mytest.h │ └── src │ │ ├── Makefile │ │ ├── main │ │ ├── Makefile │ │ └── main.c │ │ └── test │ │ ├── Makefile │ │ └── mytest.c ├── onelevel │ ├── Makefile │ ├── Makefile.env │ ├── a.h │ ├── header.h │ ├── main.c │ ├── mytest.c │ └── mytest.h └── secondlevel │ ├── Makefile │ ├── Makefile.env │ ├── inc │ ├── a.h │ ├── header.h │ └── mytest.h │ └── src │ ├── Makefile │ ├── main.c │ └── mytest.c ├── cpp ├── multilevel │ ├── Makefile │ ├── Makefile.env │ ├── inc │ │ ├── mycode1.hpp │ │ └── mycode2.h │ └── src │ │ ├── Makefile │ │ ├── main │ │ ├── Makefile │ │ └── main.cpp │ │ └── test │ │ ├── Makefile │ │ └── mycode2.cpp ├── onelevel │ ├── Makefile │ ├── Makefile.env │ ├── main.cpp │ ├── mycode.hpp │ ├── mycode1.hpp │ ├── mycode2.cpp │ └── mycode2.h └── secondlevel │ ├── Makefile │ ├── Makefile.env │ ├── inc │ ├── mycode1.hpp │ └── mycode2.h │ └── src │ ├── Makefile │ ├── main.cpp │ └── mycode2.cpp ├── image ├── eleOS.PNG ├── ldd.PNG └── make.PNG └── material ├── Makefile编程.pdf └── 跟我一起写Makefile.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/Makefile.env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/README.md -------------------------------------------------------------------------------- /c/multilevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/Makefile -------------------------------------------------------------------------------- /c/multilevel/Makefile.env: -------------------------------------------------------------------------------- 1 | ../../Makefile.env -------------------------------------------------------------------------------- /c/multilevel/inc/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/inc/a.h -------------------------------------------------------------------------------- /c/multilevel/inc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/inc/header.h -------------------------------------------------------------------------------- /c/multilevel/inc/mytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/inc/mytest.h -------------------------------------------------------------------------------- /c/multilevel/src/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)Makefile.env 2 | -------------------------------------------------------------------------------- /c/multilevel/src/main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/src/main/Makefile -------------------------------------------------------------------------------- /c/multilevel/src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/src/main/main.c -------------------------------------------------------------------------------- /c/multilevel/src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/src/test/Makefile -------------------------------------------------------------------------------- /c/multilevel/src/test/mytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/multilevel/src/test/mytest.c -------------------------------------------------------------------------------- /c/onelevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/onelevel/Makefile -------------------------------------------------------------------------------- /c/onelevel/Makefile.env: -------------------------------------------------------------------------------- 1 | ../../Makefile.env -------------------------------------------------------------------------------- /c/onelevel/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/onelevel/a.h -------------------------------------------------------------------------------- /c/onelevel/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/onelevel/header.h -------------------------------------------------------------------------------- /c/onelevel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/onelevel/main.c -------------------------------------------------------------------------------- /c/onelevel/mytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/onelevel/mytest.c -------------------------------------------------------------------------------- /c/onelevel/mytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/onelevel/mytest.h -------------------------------------------------------------------------------- /c/secondlevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/Makefile -------------------------------------------------------------------------------- /c/secondlevel/Makefile.env: -------------------------------------------------------------------------------- 1 | ../../Makefile.env -------------------------------------------------------------------------------- /c/secondlevel/inc/a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/inc/a.h -------------------------------------------------------------------------------- /c/secondlevel/inc/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/inc/header.h -------------------------------------------------------------------------------- /c/secondlevel/inc/mytest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/inc/mytest.h -------------------------------------------------------------------------------- /c/secondlevel/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/src/Makefile -------------------------------------------------------------------------------- /c/secondlevel/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/src/main.c -------------------------------------------------------------------------------- /c/secondlevel/src/mytest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/c/secondlevel/src/mytest.c -------------------------------------------------------------------------------- /cpp/multilevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/Makefile -------------------------------------------------------------------------------- /cpp/multilevel/Makefile.env: -------------------------------------------------------------------------------- 1 | ../../Makefile.env -------------------------------------------------------------------------------- /cpp/multilevel/inc/mycode1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/inc/mycode1.hpp -------------------------------------------------------------------------------- /cpp/multilevel/inc/mycode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/inc/mycode2.h -------------------------------------------------------------------------------- /cpp/multilevel/src/Makefile: -------------------------------------------------------------------------------- 1 | include $(TOPDIR)Makefile.env 2 | -------------------------------------------------------------------------------- /cpp/multilevel/src/main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/src/main/Makefile -------------------------------------------------------------------------------- /cpp/multilevel/src/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/src/main/main.cpp -------------------------------------------------------------------------------- /cpp/multilevel/src/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/src/test/Makefile -------------------------------------------------------------------------------- /cpp/multilevel/src/test/mycode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/multilevel/src/test/mycode2.cpp -------------------------------------------------------------------------------- /cpp/onelevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/onelevel/Makefile -------------------------------------------------------------------------------- /cpp/onelevel/Makefile.env: -------------------------------------------------------------------------------- 1 | ../../Makefile.env -------------------------------------------------------------------------------- /cpp/onelevel/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/onelevel/main.cpp -------------------------------------------------------------------------------- /cpp/onelevel/mycode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/onelevel/mycode.hpp -------------------------------------------------------------------------------- /cpp/onelevel/mycode1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/onelevel/mycode1.hpp -------------------------------------------------------------------------------- /cpp/onelevel/mycode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/onelevel/mycode2.cpp -------------------------------------------------------------------------------- /cpp/onelevel/mycode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/onelevel/mycode2.h -------------------------------------------------------------------------------- /cpp/secondlevel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/secondlevel/Makefile -------------------------------------------------------------------------------- /cpp/secondlevel/Makefile.env: -------------------------------------------------------------------------------- 1 | ../../Makefile.env -------------------------------------------------------------------------------- /cpp/secondlevel/inc/mycode1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/secondlevel/inc/mycode1.hpp -------------------------------------------------------------------------------- /cpp/secondlevel/inc/mycode2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/secondlevel/inc/mycode2.h -------------------------------------------------------------------------------- /cpp/secondlevel/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/secondlevel/src/Makefile -------------------------------------------------------------------------------- /cpp/secondlevel/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/secondlevel/src/main.cpp -------------------------------------------------------------------------------- /cpp/secondlevel/src/mycode2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/cpp/secondlevel/src/mycode2.cpp -------------------------------------------------------------------------------- /image/eleOS.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/image/eleOS.PNG -------------------------------------------------------------------------------- /image/ldd.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/image/ldd.PNG -------------------------------------------------------------------------------- /image/make.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/image/make.PNG -------------------------------------------------------------------------------- /material/Makefile编程.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/material/Makefile编程.pdf -------------------------------------------------------------------------------- /material/跟我一起写Makefile.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtortoise/linuxC_makefile_template/HEAD/material/跟我一起写Makefile.pdf --------------------------------------------------------------------------------