📄 makefile
字号:
CFLAGS=-W -Wall -ggdb -O2CC=gcc# NOTE: this is likely to be different on your system!# Try 'locate libtcl' if you're not sure.TCL_LIB=-ltcl8.3.PHONY: cleandefault: @echo 'Please check the TCL_LIB variable in the Makefile, then run make all.'clean: rm -f tclshell tclshell2 rm -f *~all: tclshell tclshell2tclshell: tclshell.c $(CC) $(CFLAGS) tclshell.c -o tclshell $(TCL_LIB)tclshell2: tclshell2.c $(CC) $(CFLAGS) tclshell2.c -o tclshell2 $(TCL_LIB)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -