├── Makefile ├── Makefile-v1 ├── Makefile-v2 ├── Makefile-v3 ├── Makefile-v4 ├── README.md ├── hellofunc.c ├── hellofunc.h └── hellomake.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/Makefile-v1 -------------------------------------------------------------------------------- /Makefile-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/Makefile-v2 -------------------------------------------------------------------------------- /Makefile-v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/Makefile-v3 -------------------------------------------------------------------------------- /Makefile-v4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/Makefile-v4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /hellofunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/hellofunc.c -------------------------------------------------------------------------------- /hellofunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/hellofunc.h -------------------------------------------------------------------------------- /hellomake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lifeissweetgood/makefile-tutorial/HEAD/hellomake.c --------------------------------------------------------------------------------