mirror of
https://gitlab.com/shorewall/code.git
synced 2025-01-13 09:08:12 +01:00
11 lines
255 B
Makefile
11 lines
255 B
Makefile
|
all: bogons
|
||
|
|
||
|
wget:
|
||
|
wget --timestamping http://www.iana.org/assignments/ipv4-address-space
|
||
|
|
||
|
bogons: bogons.head bogons.body bogons.tail
|
||
|
cat $^ > $@
|
||
|
|
||
|
bogons.body: wget ipv4-address-space getreserved.py Makefile
|
||
|
./getreserved.py < ipv4-address-space > $@
|