makefile

来自「是Computational Geometry in C中的原程序」· 代码 · 共 26 行

TXT
26
字号
#Joseph O'Rourke#Questions to orourke@cs.smith.edu#make sphere:	compiles sphere.c#make cube:	compiles cube.c#make spiral:	compiles spiral.c#-----------------------------------------sphere:	sphere.o	gcc -o sphere sphere.o -lmsphere.o: sphere.c	gcc -c sphere.c#-----------------------------------------cube:	cube.o	gcc -o cube cube.o -lmcube.o: cube.c	gcc -c cube.c#-----------------------------------------#-----------------------------------------spiral:	spiral.o	gcc -o spiral spiral.o -lmspiral.o: spiral.c	gcc -c spiral.c#-----------------------------------------

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?