makefile

来自「从FFMPEG转换而来的H264解码程序,VC下编译..」· 代码 · 共 24 行

TXT
24
字号
ifeq ($(CC),icl)
  CFLAGS+=/D "RELEASE"
else
ifeq ($(CC),cl)
  CFLAGS+=/D "RELEASE"
else
  CFLAGS+=-DRELEASE
endif
endif

SRCS=baseclasses_all.cpp

include ../makefile.inc

.all: $(OBJS)

clean:
	$(RM) $(TEMPFILES) *.a

#
# include dependency files if they exist
#
-include $(SRCS:.cpp=.d) $(SRCS_C:.c=.d)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?