📄 makefile.linux
字号:
# $Id: Makefile.linux,v 1.9 1999/08/13 01:54:32 paulus Exp $CDEF1= -DTERMIOS # Use the termios structureCDEF2= -DSIGTYPE=void # Standard definitionCDEF3= -UNO_SLEEP # Use the usleep functionCDEF4= -DFNDELAY=O_NDELAY # Old name valueCDEFS= $(CDEF1) $(CDEF2) $(CDEF3) $(CDEF4)CFLAGS= -O2 -g -pipe $(CDEFS)INSTALL= installall: chatchat: chat.o $(CC) -o chat chat.ochat.o: chat.c $(CC) -c $(CFLAGS) -o chat.o chat.cinstall: chat mkdir -p $(BINDIR) $(INSTALL) -s -c chat $(BINDIR) $(INSTALL) -c -m 644 chat.8 $(MANDIR)/man8clean: rm -f chat.o chat *~
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -