diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-09-29 08:25:49 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-09-29 08:25:49 +0000 |
commit | ee27949b66bf99626619d3a2eba4a65b686f6118 (patch) | |
tree | 61dd65146c9bd4b9afab4144acad4116a03eb732 /libm/Makefile | |
parent | 88d380be0ae9cf73c9b7ddfc24cf20a2e05c926c (diff) |
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: .
Diffstat (limited to 'libm/Makefile')
-rw-r--r-- | libm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/Makefile b/libm/Makefile index b09434877..b746656b8 100644 --- a/libm/Makefile +++ b/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) |