소스 검색

If HAVE_SHARED is disabled and libm/TARGET_ARCH does not exist, subdirs does not resolve to anything, not pulling in libm.a target. Add libm.a to all: .

Peter S. Mazinger 20 년 전
부모
커밋
ee27949b66
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libm/Makefile

+ 1 - 1
libm/Makefile

@@ -98,7 +98,7 @@ OBJS=$(COBJS) $(FL_MOBJ)
 ifeq ($(strip $(HAVE_SHARED)),y)
 all: $(SO_LIB_NAME)
 else
-all: subdirs
+all: $(AR_LIB_NAME) subdirs
 endif
 
 $(AR_LIB_NAME): $(OBJS)