simplify build to use docker
[osm/osmclient.git] / Makefile
index 1a2e448..7806fcb 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,49 @@
+# Copyright 2017 Sandvine
+# 
+# All Rights Reserved.
+#
+#    Licensed under the Apache License, Version 2.0 (the "License"); you may
+#    not use this file except in compliance with the License. You may obtain
+#    a copy of the License at
+#
+#         http://www.apache.org/licenses/LICENSE-2.0
+#
+#    Unless required by applicable law or agreed to in writing, software
+#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+#    License for the specific language governing permissions and limitations
+#    under the License.
+#
+
+all: build_tools
+       $(MAKE) test
+       $(MAKE) package
+
+BUILD_TOOLS=python python3 virtualenv \
+            libcurl4-gnutls-dev python-pip \
+            python3-pip libgnutls-dev debhelper
+
+build_tools:
+       sudo apt-get -y install $(BUILD_TOOLS)
+
 package:
-       @python setup.py --command-packages=stdeb.command bdist_deb > /dev/null 2>&1
+       python setup.py --command-packages=stdeb.command bdist_deb
+
+test_flake8:
+       pip install -Ur test_requirements.txt
+       python setup.py flake8
+
+test_nose: test_requirements.txt
+       pip install -Ur test_requirements.txt
+       python setup.py test
+
+test_nose3: test_requirements.txt
+       pip3 install -Ur test_requirements.txt
+       python3 setup.py test
+
+test: test_flake8 test_nose test_nose3
+
+.PHONY: package build_tools test test_flake8 test_nose test_nose3
+
+clean:
+       rm -rf deb_dist dist osmclient.egg-info