forked from netaddr/netaddr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
51 lines (43 loc) · 1.64 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#-----------------------------------------------------------------------------
# Copyright (c) 2008-2013, David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
#
# Unified build script for the netaddr library
#
SHELL = /bin/bash
.PHONY = all clean build documentation download
all:
@echo 'default target does nothing. try clean'
clean:
@echo 'cleaning up temporary files'
rm -rf dist/
rm -rf build/
rm -rf docs/build/
rm -rf netaddr.egg-info/
find . -name '*.pyc' -exec rm -f {} ';'
find . -name '*.pyo' -exec rm -f {} ';'
build: clean download
@echo 'build netaddr release'
python setup_egg.py develop
python setup.py sdist --formats=gztar,zip
python setup_egg.py bdist_egg
documentation:
@echo 'building documentation'
python setup_egg.py develop
cd docs/ && $(MAKE) -f Makefile clean html
cd docs/build/html && zip -r ../netaddr.zip *
download:
@echo 'downloading latest IEEE data'
cd netaddr/eui/ && wget -N http://standards.ieee.org/regauth/oui/oui.txt
cd netaddr/eui/ && wget -N http://standards.ieee.org/regauth/oui/iab.txt
@echo 'rebuilding IEEE data file indices'
python netaddr/eui/ieee.py
@echo 'downloading latest IANA data'
cd netaddr/ip/ && wget -N http://www.iana.org/assignments/ipv4-address-space/ipv4-address-space.xml
cd netaddr/ip/ && wget -N http://www.iana.org/assignments/ipv6-address-space/ipv6-address-space.xml
cd netaddr/ip/ && wget -N http://www.iana.org/assignments/multicast-addresses/multicast-addresses.xml
register:
@echo 'releasing netaddr'
python setup_egg.py register