12345678910111213141516171819202122232425262728293031 |
- all: test
- test: tmp tmp/%%PROM_PREFIX%%.prom tmp/nodes.json.pp tmp/%%PROM_GRAPH_PREFIX%%.prom tmp/graph.json.pp
- tmp:
- mkdir $@
- tmp/%%PROM_PREFIX%%.prom: ../src/nodes2prom tmp/nodes.json
- $> > $@.new && \
- mv $@.new $@
- tmp/nodes.json:
- %%FETCH_CMD%% $@.tmp "%%NODES_URL%%" && \
- mv $@.tmp $@
- tmp/nodes.json.pp: ../src/json-pp tmp/nodes.json
- $> $@
- tmp/%%PROM_GRAPH_PREFIX%%.prom: ../src/graph2prom tmp/graph.json
- $> > $@.new && \
- mv $@.new $@
- tmp/graph.json:
- %%FETCH_CMD%% $@.tmp "%%GRAPH_URL%%" && \
- mv $@.tmp $@
- tmp/graph.json.pp: ../src/json-pp tmp/graph.json
- $> $@
- clean:
- rm -rf tmp
|