mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-09-22 17:27:53 +00:00
hv:fix a bug for building debug/release lib
there is a build error if we only build debug/release library because missing the build/modules folder Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> modified: Makefile modified: debug/Makefile modified: release/Makefile
This commit is contained in:
committed by
ACRN System Integration
parent
7176e813ed
commit
7e6ff2a176
@@ -21,5 +21,5 @@ clean:
|
||||
-include $(OBJS:.o=.d)
|
||||
|
||||
$(HV_OBJDIR)/%.o: %.c
|
||||
[ ! -e $@ ] && mkdir -p $(dir $@); \
|
||||
[ ! -e $@ ] && mkdir -p $(dir $@) && mkdir -p $(HV_MODDIR); \
|
||||
$(CC) $(patsubst %, -I%, $(INCLUDE_PATH)) -I. -c $(CFLAGS) $(ARCH_CFLAGS) $< -o $@ -MMD -MT $@
|
||||
|
Reference in New Issue
Block a user