~ubuntu-branches/ubuntu/hoary/curl/hoary-security

« back to all changes in this revision

Viewing changes to docs/examples/makefile.dj

  • Committer: Bazaar Package Importer
  • Author(s): Domenico Andreoli
  • Date: 2004-06-04 19:09:25 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040604190925-wy048bp31320r2z6
Tags: 7.12.0.is.7.11.2-1
* Reverted to version 7.11.2 (closes: #252348).
* Disabled support for libidn (closes: #252367). This is to leave
  curl in unstable as much similar as possible to the one in testing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
#  Adapted for djgpp / Watt-32 / DOS by
 
3
#  Gisle Vanem <giva@bgnett.no>
 
4
#
 
5
 
 
6
include ../../packages/DOS/common.dj
 
7
 
 
8
CFLAGS += -I../../include
 
9
 
 
10
LIBS = ../../lib/libcurl.a
 
11
 
 
12
ifeq ($(USE_SSL),1)
 
13
  LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a
 
14
endif
 
15
 
 
16
LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a
 
17
 
 
18
PROGRAMS  = fopen.exe ftpget.exe ftpgetre.exe ftpuploa.exe getinmem.exe \
 
19
            http-pos.exe httpput.exe multi-ap.exe multi-do.exe          \
 
20
            multi-po.exe multi-si.exe persista.exe post-cal.exe         \
 
21
            postit2.exe sepheade.exe simple.exe simpless.exe
 
22
 
 
23
all: $(PROGRAMS)
 
24
 
 
25
.c.exe:
 
26
        $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
 
27
        @echo
 
28
 
 
29
clean:
 
30
        rm -f $(PROGRAMS)
 
31