Initial commit
[yaffs-website] / node_modules / extsprintf / Makefile.deps
1 # -*- mode: makefile -*-
2 #
3 # Copyright (c) 2012, Joyent, Inc. All rights reserved.
4 #
5 # Makefile.deps: Makefile for including common tools as dependencies
6 #
7 # NOTE: This makefile comes from the "eng" repo. It's designed to be dropped
8 # into other repos as-is without requiring any modifications. If you find
9 # yourself changing this file, you should instead update the original copy in
10 # eng.git and then update your repo to use the new version.
11 #
12 # This file is separate from Makefile.targ so that teams can choose
13 # independently whether to use the common targets in Makefile.targ and the
14 # common tools here.
15 #
16
17 #
18 # javascriptlint
19 #
20 JSL_EXEC        ?= deps/javascriptlint/build/install/jsl
21 JSL             ?= python2.6 $(JSL_EXEC)
22
23 $(JSL_EXEC): | deps/javascriptlint/.git
24         cd deps/javascriptlint && make install
25
26 #
27 # jsstyle
28 #
29 JSSTYLE_EXEC    ?= deps/jsstyle/jsstyle
30 JSSTYLE         ?= $(JSSTYLE_EXEC)
31
32 $(JSSTYLE_EXEC): | deps/jsstyle/.git
33
34 #
35 # restdown
36 #
37 RESTDOWN_EXEC   ?= deps/restdown/bin/restdown
38 RESTDOWN        ?= python2.6 $(RESTDOWN_EXEC)
39 $(RESTDOWN_EXEC): | deps/restdown/.git