1 |
# Makefile.am - builds jscoverage |
2 |
# Copyright (C) 2007, 2008 siliconforks.com |
3 |
# |
4 |
# This program is free software; you can redistribute it and/or modify |
5 |
# it under the terms of the GNU General Public License as published by |
6 |
# the Free Software Foundation; either version 2 of the License, or |
7 |
# (at your option) any later version. |
8 |
# |
9 |
# This program is distributed in the hope that it will be useful, |
10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
12 |
# GNU General Public License for more details. |
13 |
# |
14 |
# You should have received a copy of the GNU General Public License along |
15 |
# with this program; if not, write to the Free Software Foundation, Inc., |
16 |
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
17 |
|
18 |
SUBDIRS = js |
19 |
|
20 |
AM_CFLAGS = -Ijs/src -DXP_UNIX |
21 |
|
22 |
resources = help.txt jscoverage-server-help.txt \ |
23 |
jscoverage-sh_main.js jscoverage-sh_javascript.js jscoverage-sh_nedit.css \ |
24 |
jscoverage.html jscoverage.css jscoverage.js jscoverage-throbber.gif report.js |
25 |
|
26 |
bin_PROGRAMS = jscoverage jscoverage-server |
27 |
jscoverage_SOURCES = instrument.c instrument.h \ |
28 |
instrument-js.c instrument-js.h \ |
29 |
main.c \ |
30 |
resource-manager.c resource-manager.h \ |
31 |
stream.c stream.h \ |
32 |
util.c util.h \ |
33 |
$(resources) |
34 |
jscoverage_LDFLAGS = -static |
35 |
jscoverage_LDADD = js/libjs.la -lm |
36 |
jscoverage_server_SOURCES = http-connection.c \ |
37 |
http-exchange.c \ |
38 |
http-host.c \ |
39 |
http-message.c \ |
40 |
http-server.c http-server.h \ |
41 |
http-url.c \ |
42 |
instrument-js.c instrument-js.h \ |
43 |
jscoverage-server.c \ |
44 |
resource-manager.c resource-manager.h \ |
45 |
stream.c stream.h \ |
46 |
util.c util.h \ |
47 |
$(resources) |
48 |
|
49 |
jscoverage_server_LDFLAGS = -static |
50 |
jscoverage_server_LDADD = js/libjs.la -lm -lpthread |
51 |
|
52 |
noinst_PROGRAMS = generate-resources |
53 |
generate_resources_SOURCES = generate-resources.c |
54 |
|
55 |
BUILT_SOURCES = resources.c |
56 |
|
57 |
resources.c: generate-resources $(resources) |
58 |
$(srcdir)/generate-resources $(resources) > $@ |
59 |
|
60 |
CLEANFILES = *.gcno *.exe resources.c *~ |
61 |
|
62 |
example: jscoverage |
63 |
$(srcdir)/jscoverage --exclude=.svn doc/example doc/instrumented |
64 |
|
65 |
example-inverted: jscoverage |
66 |
$(srcdir)/jscoverage --exclude=.svn doc/example-inverted doc/instrumented-inverted |
67 |
|
68 |
example-jsunit: jscoverage |
69 |
$(srcdir)/jscoverage --exclude=.svn --no-instrument=jsunit doc/example-jsunit doc/instrumented-jsunit |
70 |
|
71 |
# override default install target so as not to recursively install subpackages |
72 |
install: install-am |