makefile

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

TXT
16
字号
#This Makefile compiles#tri.c (the default target) and comb.c##-----------------------------------------tri:	tri.o	gcc -o tri tri.o tri.o:  tri.c macros.h	gcc -c tri.c#-----------------------------------------comb:	comb.o	gcc -o comb comb.o comb.o:  comb.c	gcc -c comb.c#-----------------------------------------

⌨️ 快捷键说明

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