mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-18 23:40:11 +00:00
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>
9 lines
90 B
Makefile
9 lines
90 B
Makefile
|
|
OUT_DIR ?= .
|
|
|
|
all:
|
|
gcc -g acrnlog.c -o $(OUT_DIR)/acrnlog -lpthread
|
|
|
|
clean:
|
|
rm acrnlog
|