📄 makefile.am
字号:
# This file is part of the KDE libraries# Copyright (C) 1999 Harri Porten (porten@kde.org)# This library is free software; you can redistribute it and/or# modify it under the terms of the GNU Library General Public# License as published by the Free Software Foundation; either# version 2 of the License, or (at your option) any later version.# This library is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU# Library General Public License for more details.# You should have received a copy of the GNU Library General Public License# along with this library; see the file COPYING.LIB. If not, write to# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,# Boston, MA 02111-1307, USA.# Adjusted for Konqueror/Embedded by Simon Hausmann <simon@kde.org>YACC = bisonINCLUDES = $(all_includes)noinst_LTLIBRARIES = libkjs.lalibkjs_la_SOURCES = kjs.cpp grammar.cpp lexer.cpp nodes.cpp object.cpp \ operations.cpp ustring.cpp function.cpp types.cpp lookup.cpp \ internal.cpp regexp.cpp global_object.cpp math_object.cpp \ bool_object.cpp object_object.cpp error_object.cpp \ array_object.cpp string_object.cpp number_object.cpp \ date_object.cpp regexp_object.cpp collector.cpp function_object.cppAM_CPPFLAGS = @kjs_debug_mem@parser: $(srcdir)/grammar.y cd $(srcdir); \ $(YACC) -d -p kjsyy grammar.y && mv grammar.tab.c grammar.cpp; \ if test -f grammar.tab.h; then \ if cmp -s grammar.tab.h grammar.h; then rm -f grammar.tab.h; \ else mv grammar.tab.h grammar.h; fi \ else :; fi## test program#check_PROGRAMS = testkjs#testkjs_SOURCES = testkjs.cpp $(libkjs_la_SOURCES)#testkjs_LDADD =KDE_OPTIONS = qtonly
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -