Makefile.in 323 B

1234567891011121314151617181920
  1. all: test
  2. test: tmp tmp/%%PROM_PREFIX%%.prom tmp/nodes.json.pp
  3. tmp:
  4. mkdir $@
  5. tmp/%%PROM_PREFIX%%.prom: ../src/nodes2prom tmp/nodes.json
  6. $> > $@.new && \
  7. mv $@.new $@
  8. tmp/nodes.json.pp: ../src/json-pp tmp/nodes.json
  9. $> $@
  10. tmp/nodes.json:
  11. %%FETCH_CMD%% $@.tmp "%%NODES_URL%%" && \
  12. mv $@.tmp $@
  13. clean:
  14. rm -rf tmp