PageRenderTime 26ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/js/lib/Socket.IO-node/support/expresso/deps/jscoverage/Makefile.am

http://github.com/onedayitwillmake/RealtimeMultiplayerNodeJs
Makefile | 81 lines | 50 code | 14 blank | 17 comment | 0 complexity | 9023b260a026f68feb0b5fe64362f803 MD5 | raw file
Possible License(s): GPL-2.0, LGPL-2.1, MPL-2.0-no-copyleft-exception, BSD-3-Clause
  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. ACLOCAL_AMFLAGS = -I m4
  18. SUBDIRS = js
  19. AM_CFLAGS = -Ijs -Ijs/obj @XP_DEF@
  20. AM_CXXFLAGS = -Ijs -Ijs/obj @XP_DEF@
  21. resources = jscoverage-help.txt jscoverage-server-help.txt \
  22. jscoverage.jsm jscoverage.manifest jscoverage.xul jscoverage-overlay.js \
  23. jscoverage.html \
  24. jscoverage.css jscoverage-ie.css jscoverage-highlight.css \
  25. jscoverage.js report.js \
  26. jscoverage-throbber.gif
  27. bin_PROGRAMS = jscoverage jscoverage-server
  28. jscoverage_SOURCES = encoding.c encoding.h \
  29. highlight.c highlight.h \
  30. instrument.c instrument.h \
  31. instrument-js.cpp instrument-js.h \
  32. jscoverage.c global.h \
  33. resource-manager.c resource-manager.h \
  34. stream.c stream.h \
  35. util.c util.h \
  36. $(resources)
  37. jscoverage_LDADD = js/obj/libjs.a -lm @LIBICONV@ @EXTRA_TIMER_LIBS@
  38. jscoverage_server_SOURCES = http-connection.c \
  39. http-exchange.c \
  40. http-host.c \
  41. http-message.c \
  42. http-server.c http-server.h \
  43. http-url.c \
  44. encoding.c encoding.h \
  45. highlight.c highlight.h \
  46. instrument-js.cpp instrument-js.h \
  47. jscoverage-server.c global.h \
  48. resource-manager.c resource-manager.h \
  49. stream.c stream.h \
  50. util.c util.h \
  51. $(resources)
  52. jscoverage_server_LDADD = js/obj/libjs.a -lm @EXTRA_SOCKET_LIBS@ @EXTRA_THREAD_LIBS@ @LIBICONV@ @EXTRA_TIMER_LIBS@
  53. noinst_PROGRAMS = generate-resources
  54. generate_resources_SOURCES = generate-resources.c
  55. BUILT_SOURCES = resources.c
  56. resources.c: generate-resources $(resources)
  57. $(srcdir)/generate-resources $(resources) > $@
  58. dist_man_MANS = jscoverage.1 jscoverage-server.1
  59. CLEANFILES = *.gcno *.exe resources.c *~
  60. example: jscoverage
  61. $(srcdir)/jscoverage --exclude=.svn doc/example doc/instrumented
  62. example-inverted: jscoverage
  63. $(srcdir)/jscoverage --exclude=.svn doc/example-inverted doc/instrumented-inverted
  64. example-jsunit: jscoverage
  65. $(srcdir)/jscoverage --exclude=.svn --no-instrument=jsunit doc/example-jsunit doc/instrumented-jsunit
  66. # override default install target so as not to recursively install subpackages
  67. install: install-am