|
1 |
| -# ------------------------------------------------------------------- |
2 |
| -# |
3 |
| -# Copyright (c) 2014 Basho Technologies, Inc. |
4 |
| -# |
5 |
| -# This file is provided to you under the Apache License, |
6 |
| -# Version 2.0 (the "License"); you may not use this file |
7 |
| -# except in compliance with the License. You may obtain |
8 |
| -# a copy of the License at |
9 |
| -# |
10 |
| -# http://www.apache.org/licenses/LICENSE-2.0 |
11 |
| -# |
12 |
| -# Unless required by applicable law or agreed to in writing, |
13 |
| -# software distributed under the License is distributed on an |
14 |
| -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
15 |
| -# KIND, either express or implied. See the License for the |
16 |
| -# specific language governing permissions and limitations |
17 |
| -# under the License. |
18 |
| -# |
19 |
| -# ------------------------------------------------------------------- |
20 |
| - |
21 |
| -# ------------------------------------------------------------------- |
22 |
| -# NOTE: This file is is from https://github.com/basho/tools.mk. |
23 |
| -# It should not be edited in a project. It should simply be updated |
24 |
| -# wholesale when a new version of tools.mk is released. |
25 |
| -# ------------------------------------------------------------------- |
26 |
| - |
27 |
| -REBAR = $(shell pwd)/rebar3 |
28 |
| -REVISION ?= $(shell git rev-parse --short HEAD) |
29 |
| -PROJECT ?= $(shell basename `find src -name "*.app.src"` .app.src) |
30 |
| -DEP_DIR ?= "deps" |
31 |
| -EBIN_DIR ?= "ebin" |
32 |
| - |
33 |
| -.PHONY: compile-no-deps test docs xref dialyzer-run dialyzer-quick dialyzer \ |
34 |
| - cleanplt upload-docs |
35 |
| - |
| 1 | +.PHONY: compile-no-deps test docs xref dialyzer \ |
| 2 | + |
36 | 3 | compile-no-deps:
|
37 | 4 | ${REBAR} compile skip_deps=true
|
38 | 5 |
|
|
0 commit comments