diff options
author | Gunter Knauf <gk@gknw.de> | 2007-04-16 20:54:56 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-04-16 20:54:56 +0000 |
commit | f30ae93a1fbeb10947e749b1560e6b793d894666 (patch) | |
tree | d30c4f0b4a31889dd343c4cc827f89494c13c65c /ares | |
parent | 365e8eb78e1933c89e786998df6ab8ac8e9f86e1 (diff) |
added ranlib when library is created with ar.
Diffstat (limited to 'ares')
-rw-r--r-- | ares/Makefile.netware | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ares/Makefile.netware b/ares/Makefile.netware index ccf8d01a2..fc7e390e5 100644 --- a/ares/Makefile.netware +++ b/ares/Makefile.netware @@ -74,6 +74,7 @@ LDFLAGS = -nostdlib $(PRELUDE) $(OBJEXE) $(<:.def=.o) -o $@ -commandfile AR = mwldnlm ARFLAGS = -type library -w nocmdline $(OBJDIR)/*.o -o LIBEXT = lib +#RANLIB = CFLAGS += -msgstyle gcc -gccinc -inline off -opt nointrinsics -proc 586 CFLAGS += -relax_pointers #CFLAGS += -w on @@ -91,6 +92,7 @@ LDFLAGS = -T AR = ar ARFLAGS = -cq LIBEXT = a +RANLIB = ranlib CFLAGS += -fno-builtin -fpcc-struct-return -fno-strict-aliasing CFLAGS += -Wall -Wno-format -Wno-uninitialized # -pedantic ifeq ($(LIBARCH),LIBC) @@ -163,6 +165,9 @@ clean: @echo Creating $@ @-$(RM) $@ @$(AR) $(ARFLAGS) $@ $^ +ifdef RANLIB + @$(RANLIB) $@ +endif %.nlm: $(OBJDIR)/%.def $(OBJDIR)/%.o $(OBJDIR)/%.xdc $(OBJEXE) @echo Linking $@ |