diff options
author | Gunter Knauf <gk@gknw.de> | 2007-03-26 01:50:44 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-03-26 01:50:44 +0000 |
commit | 8851df41c5ae9ee7459fdd1f4f8b72b36b2ab982 (patch) | |
tree | bd25e3a87e433cb9855a034c9b0081e99364caa0 /ares/Makefile.netware | |
parent | a6f461215420bb394ed1ac7ab9ab21a61d312949 (diff) |
fixed build to use compiler-default lib extension.
Diffstat (limited to 'ares/Makefile.netware')
-rw-r--r-- | ares/Makefile.netware | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/ares/Makefile.netware b/ares/Makefile.netware index 874f5bf94..b2876af90 100644 --- a/ares/Makefile.netware +++ b/ares/Makefile.netware @@ -1,9 +1,9 @@ ################################################################# # -## Makefile for building libares.lib (NetWare version - gnu make) +## Makefile for building libares (NetWare version - gnu make) ## Use: make -f Makefile.netware ## -## Comments to: Guenter Knauf <eflash@gmx.net> +## Comments to: Guenter Knauf http://www.gknw.de/phpbb # ################################################################# @@ -18,7 +18,7 @@ endif # Edit the vars below to change NLM target settings. TARGETS = adig.nlm ahost.nlm -LTARGET = libcares.lib +LTARGET = libcares.$(LIBEXT) VERSION = $(LIBCARES_VERSION) COPYR = Copyright (C) 1996 - 2007, Daniel Stenberg, <daniel@haxx.se> DESCR = cURL $(subst .def,,$(notdir $@)) $(LIBCARES_VERSION_STR) - http://curl.haxx.se @@ -72,6 +72,7 @@ LD = mwldnlm LDFLAGS = -nostdlib $(PRELUDE) $(OBJS) $(<:.def=.o) -o $@ -commandfile AR = mwldnlm ARFLAGS = -type library -w nocmdline $(OBJDIR)/*.o -o +LIBEXT = lib CFLAGS += -msgstyle gcc -gccinc -inline off -opt nointrinsics -proc 586 CFLAGS += -relax_pointers #CFLAGS += -w on @@ -88,6 +89,7 @@ LD = nlmconv LDFLAGS = -T AR = ar ARFLAGS = -cq +LIBEXT = a CFLAGS += -fno-builtin -fpcc-struct-return -fno-strict-aliasing CFLAGS += -Wall -Wno-format -Wno-uninitialized # -pedantic ifeq ($(LIBARCH),LIBC) @@ -155,7 +157,7 @@ clean: -$(RM) -r $(OBJDIR) -$(RM) -r arpa -%.lib: $(OBJS) +%.$(LIBEXT): $(OBJS) @echo Creating $@ @-$(RM) $@ @$(AR) $(ARFLAGS) $@ $^ |