~ubuntu-branches/ubuntu/quantal/curl/quantal-proposed

« back to all changes in this revision

Viewing changes to lib/Makefile.netware

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2012-08-20 13:54:01 UTC
  • mfrom: (3.4.30 sid)
  • Revision ID: package-import@ubuntu.com-20120820135401-5845kg6puoh2jcnh
Tags: 7.27.0-1ubuntu1
* Resynchronise with Debian.  Remaining changes:
  - Drop dependencies not in main:
    + Build-Depends: Drop stunnel4 and libssh2-1-dev.
    + Drop libssh2-1-dev from binary package Depends.
  - Add new libcurl3-udeb package.
  - Add new curl-udeb package.

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
MTSAFE  = YES
65
65
STACK   = 64000
66
66
SCREEN  = none
67
 
EXPORTS = @libcurl.imp
 
67
EXPORTF = $(TARGET).imp
 
68
EXPORTS = @$(EXPORTF)
68
69
 
69
70
# Uncomment the next line to enable linking with POSIX semantics.
70
71
# POSIXFL = 1
330
331
#       @echo Compiling $<
331
332
        $(CC) $(CFLAGS) -c $< -o $@
332
333
 
333
 
$(OBJDIR)/version.inc: ../include/curl/curlver.h $(OBJDIR)
 
334
$(OBJDIR)/version.inc: $(CURL_INC)/curl/curlver.h $(OBJDIR)
334
335
        @echo Creating $@
335
336
        @$(AWK) -f ../packages/NetWare/get_ver.awk $< > $@
336
337
 
350
351
        -$(RM) -r $(OBJDIR)
351
352
 
352
353
distclean vclean: clean
353
 
        -$(RM) $(TARGET).$(LIBEXT) $(TARGET).nlm
 
354
        -$(RM) $(TARGET).$(LIBEXT) $(TARGET).nlm $(TARGET).imp
354
355
        -$(RM) certdata.txt ca-bundle.crt
355
356
 
356
357
$(OBJDIR) $(INSTDIR):
364
365
        @$(RANLIB) $@
365
366
endif
366
367
 
367
 
$(TARGET).nlm: $(OBJDIR)/$(TARGET).def $(OBJL) $(XDCDATA)
 
368
$(TARGET).nlm: $(OBJDIR)/$(TARGET).def $(OBJL) $(EXPORTF) $(XDCDATA)
368
369
        @echo Linking $@
369
370
        @-$(RM) $@
370
371
        @$(LD) $(LDFLAGS) $<
660
661
        @echo $(DL)#define CURL_CA_BUNDLE getenv("CURL_CA_BUNDLE")$(DL) >> $@
661
662
endif
662
663
 
 
664
$(EXPORTF): $(CURL_INC)/curl/curl.h $(CURL_INC)/curl/easy.h $(CURL_INC)/curl/multi.h $(CURL_INC)/curl/mprintf.h
 
665
        @echo Creating $@
 
666
        @$(AWK) -f ../packages/NetWare/get_exp.awk $^ > $@
 
667
 
663
668
FORCE: ;
664
669
 
665
670
info: $(OBJDIR)/version.inc
696
701
        @echo ipv6 support:    no
697
702
endif
698
703
 
699
 
$(LIBCARES_PATH)/libcares.$(LIBEXT):
700
 
        $(MAKE) -C $(LIBCARES_PATH) -f Makefile.netware lib
701
 
 
702
 
ca-bundle.crt: mk-ca-bundle.pl
703
 
        @echo Creating $@
704
 
        @-$(PERL) $< -b -n $@
705
 
 
706
704
$(CURL_INC)/curl/curlbuild.h: Makefile.netware FORCE
707
705
        @echo Creating $@
708
706
        @echo $(DL)/* $@ intended for NetWare target.$(DL) > $@
741
739
        @echo $(DL)typedef CURL_TYPEOF_CURL_OFF_T curl_off_t;$(DL) >> $@
742
740
        @echo $(DL)#endif /* __CURL_CURLBUILD_H */$(DL) >> $@
743
741
 
 
742
$(LIBCARES_PATH)/libcares.$(LIBEXT):
 
743
        $(MAKE) -C $(LIBCARES_PATH) -f Makefile.netware lib
 
744
 
 
745
ca-bundle.crt: mk-ca-bundle.pl
 
746
        @echo Creating $@
 
747
        @-$(PERL) $< -b -n $@
 
748