simplify build to use docker
[osm/osmclient.git] / Makefile
1 # Copyright 2017 Sandvine
2 #
3 # All Rights Reserved.
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License"); you may
6 # not use this file except in compliance with the License. You may obtain
7 # a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 # License for the specific language governing permissions and limitations
15 # under the License.
16 #
17
18 all: build_tools
19 $(MAKE) test
20 $(MAKE) package
21
22 BUILD_TOOLS=python python3 virtualenv \
23 libcurl4-gnutls-dev python-pip \
24 python3-pip libgnutls-dev debhelper
25
26 build_tools:
27 sudo apt-get -y install $(BUILD_TOOLS)
28
29 package:
30 python setup.py --command-packages=stdeb.command bdist_deb
31
32 test_flake8:
33 pip install -Ur test_requirements.txt
34 python setup.py flake8
35
36 test_nose: test_requirements.txt
37 pip install -Ur test_requirements.txt
38 python setup.py test
39
40 test_nose3: test_requirements.txt
41 pip3 install -Ur test_requirements.txt
42 python3 setup.py test
43
44 test: test_flake8 test_nose test_nose3
45
46 .PHONY: package build_tools test test_flake8 test_nose test_nose3
47
48 clean:
49 rm -rf deb_dist dist osmclient.egg-info