Added anyauthput.exe.

This commit is contained in:
Gisle Vanem 2004-11-26 15:04:15 +00:00
parent af114358c8
commit f0e66d8c76

View File

@ -1,33 +1,33 @@
# #
# Adapted for djgpp / Watt-32 / DOS by # Adapted for djgpp / Watt-32 / DOS by
# Gisle Vanem <giva@bgnett.no> # Gisle Vanem <giva@bgnett.no>
# #
include ../../packages/DOS/common.dj include ../../packages/DOS/common.dj
CFLAGS += -I../../include -DFALSE=0 -DTRUE=1 CFLAGS += -I../../include -DFALSE=0 -DTRUE=1
LIBS = ../../lib/libcurl.a LIBS = ../../lib/libcurl.a
ifeq ($(USE_SSL),1) ifeq ($(USE_SSL),1)
LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a
endif endif
LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a
PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \
getinmemory.exe http-post.exe httpput.exe multi-app.exe \ getinmemory.exe http-post.exe httpput.exe multi-app.exe \
multi-double.exe multi-post.exe multi-single.exe \ multi-double.exe multi-post.exe multi-single.exe \
persistant.exe post-callback.exe postit2.exe \ persistant.exe post-callback.exe postit2.exe \
sepheaders.exe simple.exe simplessl.exe https.exe \ sepheaders.exe simple.exe simplessl.exe https.exe \
ftp3rdparty.exe getinfo.exe ftp3rdparty.exe getinfo.exe anyauthput.exe
all: $(PROGRAMS) all: $(PROGRAMS)
%.exe: %.c %.exe: %.c
$(CC) $(CFLAGS) -o $@ $^ $(LIBS) $(CC) $(CFLAGS) -o $@ $^ $(LIBS)
@echo @echo
clean: clean:
rm -f $(PROGRAMS) rm -f $(PROGRAMS)