mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-05-04 01:49:28 +00:00
The make install target was missing. This commits adds the intall target which uses the install target from subprojects. Also a make install target was created in each tool program. Signed-off-by: Miguel Bernal Marin <miguel.bernal.marin@linux.intel.com>
13 lines
248 B
Makefile
13 lines
248 B
Makefile
|
|
OUT_DIR ?= .
|
|
|
|
all: acrnctl.c
|
|
gcc -o $(OUT_DIR)/acrnctl acrnctl.c -I../../devicemodel/include -Wall -g
|
|
|
|
clean:
|
|
rm -f $(OUT_DIR)/acrnctl
|
|
|
|
install: $(OUT_DIR)/acrnctl
|
|
install -d $(DESTDIR)/usr/bin
|
|
install -t $(DESTDIR)/usr/bin $(OUT_DIR)/acrnctl
|