makefile

来自「程序代码使用说明: (1)所有源代码目录下都提供了Makefile(非Qt)」· 代码 · 共 14 行

TXT
14
字号
CC = gccCFLAGS = -O2 all: test_get test_posttest_get: test_get.c	$(CC) $(CFLAGS) -o test_get test_get.ctest_post: test_post.c	$(CC) $(CFLAGS) -o test_post test_post.c    clean:	rm -f test_get test_post *~

⌨️ 快捷键说明

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