| # 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. |
| |
| YACC = bison |
| INCLUDES = $(all_includes) |
| |
| lib_LTLIBRARIES = libkjs.la |
| |
| libkjs_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.cpp \ |
| debugger.cpp |
| |
| kjsincludedir = $(includedir)/kjs |
| kjsinclude_HEADERS = kjs.h object.h operations.h ustring.h \ |
| function.h lookup.h types.h |
| |
| noinst_HEADERS = nodes.h lexer.h regexp.h internal.h collector.h \ |
| grammar.h object_object.h function_object.h function_object.h \ |
| bool_object.h math_object.h array_object.h string_object.h \ |
| number_object.h date_object.h regexp_object.h error_object.h \ |
| debugger.h |
| |
| libkjs_la_LDFLAGS = -version-info 1:0 -no-undefined $(USER_LDFLAGS) |
| libkjs_la_LIBADD = -lm $(LIBPCRE) |
| |
| 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 |
| |
| ## with debugger interface |
| debugger: $(libkjs_la_SOURCES) $(kjsinclude_HEADERS) $(noinst_HEADERS) |
| $(MAKE) DEFS="-DKJS_DEBUGGER $(DEFS)" libkjs.la |
| |
| ## test program (in one program for easier profiling/memory debugging) |
| EXTRA_PROGRAMS = testkjs_static |
| testkjs_static_SOURCES = testkjs.cpp $(libkjs_la_SOURCES) |
| testkjs_static_LDADD = $(LIBPCRE) |
| |
| ## test program (linked to libkjs) |
| check_PROGRAMS = testkjs |
| testkjs_SOURCES = testkjs.cpp |
| testkjs_LDADD = libkjs.la |
| |