📄 makefile
字号:
TOPDIR := $(shell pwd)include $(TOPDIR)/Rules.maketest: subdir test.o $(OBJS) $(LD) -o test test.o $(OBJS)subdir: for n in $(SUBDIR); do $(MAKE) -C $$n || exit 1; doneclean: rm -f *.o test for n in $(SUBDIR); do $(MAKE) -C $$n clean; donetest.o: test.c $(TOPDIR)/stack/stack.h $(TOPDIR)/hlink/hlink.h \ $(TOPDIR)/uri/uri.h $(TOPDIR)/list/list.h $(CC) $(CFLAGS) test.crebuild: clean test
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -