Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1022 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 1022 Bytes

Overview for ROCm.mk

This Makefile builds the various projects that makes up ROCm in the correct order. It is expected to be run in an environment with the tooling set up. An easy way to do this is to use Docker.

Targets

  • all (default)
  • rocm-dev (a subset of all)
  • clean
  • list_components
  • help
  • T_foo
  • C_foo

Makefile Variables

  • PEVAL set to 1 to enable some Makefile debugging code.
  • RELEASE_FLAG set to "" to avoid passing "-r" to builds, effect is package defined.
  • NOBUILD="foo bar" to avoid adding foo and bar into the dependencies of top level targets. They still may be built if they are needed as dependencies of other top level targets.
  • toplevel

Makefile assumptions

Requirements for package "foo"

program build_foo.sh

  • Should take option "-c" to clean
  • Should take option "-r" to do a normal "RelWithDeb" build

For package "foo" we define some targets

  • T_foo - The main build target, calls "build_foo.sh -r"
  • C_foo - Clean target, calls "build_foo.sh -c"