📄 makefile.in
字号:
SHELL=@SHELL@prefix=@prefix@exec_prefix=@exec_prefix@bindir=@bindir@mandir=@mandir@CC=@CC@CFLAGS= @CFLAGS@LDFLAGS=@LDFLAGS@ @LIBS@INSTALL=@INSTALL@DEP_SRC=@DEP_FILES@ \ common.c \ gsm.c \ ucs2.c \ unicode.c \ s35.c s35_files.c \ s35_pbook.c \ s35_sms.c \ scmxx.c \ actions.c \ smspdu.c \ help.c \ numhandle.c \ smscoding.c \ helpers.c \ pbmaskgsm.c \ fileaccess.c \ ttyaccess.cDEP_HEADER= \ charsets.h \ common.h \ depincludes.h \ helpers.h \ pbmaskgsm.h \ smscoding.h \ smspdu.hOBJECTS=$(patsubst %.c, %.@OBJEXT@, $(DEP_SRC))BINARY=../scmxx@EXEEXT@.PHONY: allall: $(BINARY)#GNU make will automatically call the rule for the include#It will print a non-fatal error message, though but do not#worry about it.#If your make cannot do this and you cannot use GNU make,#change this from 'include' to 'sinclude' and run# make depend#before compiling.include .dependencies.PHONY: dependdepend: .dependencies.dependencies: $(DEP_SRC) $(DEP_HEADER) $(CC) $(CFLAGS) -MM $(DEP_SRC) >.dependencies.PHONY: cleanclean: rm -f $(OBJECTS) $(BINARY).PHONY: dist-cleandistclean: clean rm -f .dependencies Makefile.PHONY: installinstall: $(BINARY) $(INSTALL) -d $(DESTDIR)$(bindir) $(INSTALL) $(BINARY) $(DESTDIR)$(bindir)$(BINARY): $(OBJECTS) $(CC) -o $(BINARY) $(OBJECTS) $(LDFLAGS) @if [ "@EXEEXT@" != ".exe" ]; then chmod 755 $(BINARY); fi
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -