Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1.04 KB

README.md

File metadata and controls

25 lines (16 loc) · 1.04 KB

EVE Build Tools

This repository contains tools used for building parts of the EVE ecosystem. The tools in here can be used directly, or can be runas part of a publicly available Docker image. There is a single image containing all of the tools.

Build

  • To build the Docker image, run make image, or just docker build -t <tag> .
  • To build an individual tool locally, run make <toolname>
  • To build all of the tools locally, run make tools
  • To list the available tools, run make list

Adding a new tool

Each tool should be in its own directory, under src/. This makes the build simpler, with actual source under src/, and tooling, like the Makefile and Dockerfile, as well as documentation like the README, in the root directory.

In addition, each tool should have a Makefile, with the following characteristics:

  • target build to build locally, where OUTDIR determines where compiled objects should go
  • target test to run local tests