Files
acrn-hypervisor/tools/acrn-manager/Makefile
Minggui Cao 20d375f33a add a makefile under project root directory
it can be used as following:
  make ==> to make hypervisor & devicemodel & tools
also modify tools makefile to support out-dir setting.

Signed-off-by: Minggui Cao <minggui.cao@intel.com>
Reviewed-by: Jack Ren <jack.ren@intel.com>
2018-05-15 11:37:42 +08:00

9 lines
127 B
Makefile

OUT_DIR ?= .
all: acrnctl.c
gcc -o $(OUT_DIR)/acrnctl acrnctl.c -I../../devicemodel/include -Wall -g
clean:
rm -f acrnctl