Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 594B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # Copyright (c) 2012, Joyent, Inc. All rights reserved.
  3. #
  4. # Makefile: top-level Makefile
  5. #
  6. # This Makefile contains only repo-specific logic and uses included makefiles
  7. # to supply common targets (javascriptlint, jsstyle, restdown, etc.), which are
  8. # used by other repos as well.
  9. #
  10. #
  11. # Tools must be installed on the path
  12. #
  13. JSL = jsl
  14. JSSTYLE = jsstyle
  15. #
  16. # Files
  17. #
  18. JS_FILES := $(shell find lib tests -name '*.js' -not -name compat.js)
  19. JSL_FILES_NODE = $(JS_FILES)
  20. JSSTYLE_FILES = $(JS_FILES)
  21. JSL_CONF_NODE = jsl.node.conf
  22. all:
  23. npm install
  24. test:
  25. npm test
  26. include ./Makefile.targ