📄 makefile
字号:
CFLAGS := -WallOBJS := thrdcreat thrdcancel mutexall: $(OBJS)thrdcreat: thrdcreat.c $(CC) $(CFLAGS) thrdcreat.c -o thrdcreat -lpthreadthrdcancel: thrdcancel.c $(CC) $(CFLAGS) thrdcancel.c -o thrdcancel -lpthreadmutex: mutex.c $(CC) $(CFLAGS) mutex.c -o mutex -lpthread.PHONY: clean distclean: $(RM) *.o *~ core $(OBJS)dist: clean $(RM) *.gz tar czf 021514.tar.gz *.c Makefile
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -