We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ee53db commit 0467e52Copy full SHA for 0467e52
sdk/cpprt/Makefile
@@ -75,7 +75,8 @@ all: $(CPPRT)
75
prepare-libunwind:
76
$(CP) linux/pthread_compat.h $(LIBUNWIND_DIR)/include
77
78
-$(CPPRT): $(OBJS) prepare-libunwind libunwind
+$(CPPRT): $(OBJS) prepare-libunwind
79
+ $(Make) libunwind
80
$(CP) $(LIBUNWIND_DIR)/src/.libs/libunwind.a $(CPPRT)
81
$(AR) rs $@ $(OBJS)
82
@@ -89,7 +90,7 @@ libunwind:
89
90
.PHONY: clean
91
clean:
92
@$(RM) $(OBJS) $(CPPRT)
-ifeq ("$(shell test -f $(LIBUNWIND_DIR)/Makefile && echo Makefile exists)", "Makefile exists")
93
+ifeq ("$(shell test -f $(LIBUNWIND_DIR)/Makefile && echo Makefile exists)", "Makefile exists")
94
@-$(MAKE) -C $(LIBUNWIND_DIR) clean
95
endif
96
@$(RM) -r $(LIBUNWIND_DIR)/INSTALL \
0 commit comments