diff options
author | Gunter Knauf <gk@gknw.de> | 2007-07-03 00:50:40 +0000 |
---|---|---|
committer | Gunter Knauf <gk@gknw.de> | 2007-07-03 00:50:40 +0000 |
commit | 70f8068d4d83121c816dea4fd8d0ec4fcf0c980f (patch) | |
tree | 8a147c677cdc59fad3ebae20d627788978a81a3f /src/Makefile.netware | |
parent | a7513a8521707f011fc20974ad47d60a5f4caa5a (diff) |
fixed rule to build libcares when needed.
Diffstat (limited to 'src/Makefile.netware')
-rw-r--r-- | src/Makefile.netware | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/Makefile.netware b/src/Makefile.netware index 8bcaa76dd..bb172690b 100644 --- a/src/Makefile.netware +++ b/src/Makefile.netware @@ -204,7 +204,7 @@ OBJS := $(patsubst %.c,$(OBJDIR)/%.o,$(strip $(CURL_SOURCES))) $(OBJX) vpath %.c $(CURL_LIB) -all: prebuild $(TARGET).nlm +all: prebuild $(TARGET).nlm prebuild: $(OBJDIR) $(OBJDIR)/version.inc config.h @@ -465,4 +465,7 @@ hugehelp.c: @echo Creating $@ @$(CP) hugehelp.c.cvs $@ - +$(ARES_LIB)/libcares.$(LIBEXT): + $(MAKE) -C $(ARES_LIB) -f Makefile.netware lib + + |