makefile

来自「用于词法分析的词法分析器」· 代码 · 共 24 行

TXT
24
字号
# $Id: Makefile,v 1.3 1997/04/14 12:30:12 matt Exp $## elexd makefile.include Defs.makebase = ..INCLUDES = -I..sources := $(wildcard *.cpp)objects := $(sources:.cpp=.o)elexd: $(objects) $(base)/foo/foo.a $(base)/cppscan/cppscan.a \       $(base)/compiler/compiler.a $(base)/util/util.a # Optimization hoses compilation of elexdelexd.o : elexd.cpp	$(CC) -c $(CFLAGS) $(LOCAL_CFLAGS) $(CPPFLAGS) $(INCLUDES) $< -o $@# auto dependenciesinclude $(sources:.cpp=.d)

⌨️ 快捷键说明

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