📄 makefile
字号:
.SUFFIXES: .c .oSHELL=/bin/sh#CC=/opt/SUNWspro/bin/ccCC=gcc#CFLAGS= -I/usr/openwin/include -DTIMESTAMP=\"`date +%m/%d/%y_%H:%M:%S`\" -fast -xtarget=ultraCFLAGS=-g -I/usr/openwin/include -DTIMESTAMP=\"`date +%m/%d/%y_%H:%M:%S`\".c.o:; $(CC) $(CFLAGS) -c $*.c###########################################################################OBJS = read.o place.o init.o update.o otree.o cost.o main.oLIBS = -L/usr/openwin/lib -lmSRCS = ${OBJS:%.o=%.c}rect : $(OBJS) $(CC) $(CFLAGS) -o rect $(OBJS) $(LIBS)$(SRCS):: struct.hclean: rm -f $(OBJS)compact : rect strip rect
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -