~ubuntu-branches/ubuntu/hardy/curl/hardy-updates

« back to all changes in this revision

Viewing changes to lib/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-10-30 10:56:48 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20061030105648-uo8q8w9xklb40b4k
Tags: 7.15.5-1ubuntu1
* Merge from debian unstable. Remaining Ubuntu changes:
  - debian/control: Drop libdb4.2 build dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
19
# KIND, either express or implied.
20
20
#
21
 
# $Id: Makefile.am,v 1.110 2006-05-31 05:17:27 bagder Exp $
 
21
# $Id: Makefile.am,v 1.113 2006-07-25 22:06:42 bagder Exp $
22
22
###########################################################################
23
23
AUTOMAKE_OPTIONS = foreign nostdinc
24
24
 
25
25
DSP = curllib.dsp
26
 
 
27
 
EXTRA_DIST = Makefile.b32 Makefile.m32 Makefile.vc6 Makefile.riscos $(DSP)    \
28
 
 curllib.dsw config-win32.h config-win32ce.h config-riscos.h                  \
29
 
 config-mac.h config.h.in ca-bundle.crt README.encoding README.memoryleak     \
30
 
 README.ares README.curlx makefile.dj config.dj libcurl.framework.make        \
31
 
 libcurl.plist libcurl.rc config-amigaos.h amigaos.c amigaos.h makefile.amiga \
32
 
 Makefile.netware nwlib.c libcurl.imp msvcproj.head msvcproj.foot             \
33
 
 config-win32ce.h README.httpauth Makefile.Watcom README.hostip               \
34
 
 README.multi_socket config-tpf.h
35
 
 
36
 
CLEANFILES = $(DSP)
 
26
VCPROJ = curllib.vcproj
 
27
 
 
28
DOCS = README.encoding README.memoryleak README.ares README.curlx       \
 
29
 README.hostip README.multi_socket README.httpauth README.pipelining
 
30
 
 
31
EXTRA_DIST = Makefile.b32 Makefile.m32 Makefile.vc6 Makefile.riscos     \
 
32
 $(DSP) curllib.dsw config-win32.h config-win32ce.h config-riscos.h     \
 
33
 config-mac.h config.h.in ca-bundle.crt makefile.dj config.dj           \
 
34
 libcurl.framework.make libcurl.plist libcurl.rc config-amigaos.h       \
 
35
 amigaos.c amigaos.h makefile.amiga Makefile.netware nwlib.c            \
 
36
 libcurl.imp msvcproj.head msvcproj.foot config-win32ce.h               \
 
37
 Makefile.Watcom config-tpf.h $(DOCS) $(VCPROJ)
 
38
 
 
39
CLEANFILES = $(DSP) $(VCPROJ)
37
40
 
38
41
lib_LTLIBRARIES = libcurl.la
39
42
 
123
126
        echo "/* ca bundle path set in here*/" > $(distdir)/ca-bundle.h
124
127
 
125
128
DSPOUT = | awk '{printf("%s\r\n", $$0)}' >> $(DSP)
 
129
VCPROJOUT = | awk '{printf("%s\r\n", $$0)}' >> $(VCPROJ)
126
130
 
127
131
$(DSP): msvcproj.head msvcproj.foot Makefile.am
128
132
        echo "creating $(DSP)"
129
 
        @(cp msvcproj.head $(DSP); \
 
133
        @(cp $(srcdir)/msvcproj.head $(DSP); \
130
134
        echo "# Begin Group \"Source Files\"" $(DSPOUT); \
131
135
        for file in $(WIN32SOURCES); do \
132
136
        echo "# Begin Source File" $(DSPOUT); \
143
147
        echo "# End Source File" $(DSPOUT); \
144
148
        done; \
145
149
        echo "# End Group" $(DSPOUT); \
146
 
        cat msvcproj.foot $(DSPOUT) )
 
150
        cat $(srcdir)/msvcproj.foot $(DSPOUT) )
 
151
 
 
152
$(VCPROJ): vc8proj.head vc8proj.foot Makefile.am
 
153
        echo "creating $(VCPROJ)"
 
154
        @(cp $(srcdir)/vc8proj.head $(VCPROJ); \
 
155
        for file in $(WIN32SOURCES); do \
 
156
        echo "<File RelativePath=\""$$file"\"></File>" $(VCPROJOUT); \
 
157
        done; \
 
158
        echo "</Filter><Filter  Name=\"Header Files\">" $(VCPROJOUT); \
 
159
        for file in $(WIN32HEADERS); do \
 
160
        echo "<File RelativePath=\""$$file"\"></File>" $(VCPROJOUT); \
 
161
        done; \
 
162
        cat $(srcdir)/vc8proj.foot $(VCPROJOUT) )