diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-09-13 13:51:03 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-09-13 13:51:03 +0000 |
commit | 9e54d4c7d29352f54aed28542f5b840e9d88c071 (patch) | |
tree | c41fef42b835b90fd7e4e656bd6af09df5e29ef0 /docs | |
parent | 56bf97ffc9b6e61d3ebf3b5e5a0dfff030b4125e (diff) | |
download | curl-9e54d4c7d29352f54aed28542f5b840e9d88c071.tar.gz |
Use CSOURCES as other makefiles. Add line for dependency generation.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/examples/makefile.dj | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/docs/examples/makefile.dj b/docs/examples/makefile.dj index 8d19ef63e..d0d4b67f0 100644 --- a/docs/examples/makefile.dj +++ b/docs/examples/makefile.dj @@ -15,13 +15,13 @@ endif LIBS += $(WATT32_ROOT)/lib/libwatt.a $(ZLIB_ROOT)/libz.a -PROGRAMS = fopen.exe ftpget.exe ftpgetresp.exe ftpupload.exe \ - getinmemory.exe http-post.exe httpput.exe multi-app.exe \ - multi-double.exe multi-post.exe multi-single.exe \ - persistant.exe post-callback.exe postit2.exe \ - sepheaders.exe simple.exe simplessl.exe https.exe \ - ftp3rdparty.exe getinfo.exe anyauthput.exe \ - cookie_interface.exe +CSOURCES = fopen.c ftpget.c ftpgetresp.c ftpupload.c getinmemory.c \ + http-post.c httpput.c multi-app.c multi-double.c multi-post.c \ + multi-single.c persistant.c post-callback.c postit2.c \ + sepheaders.c simple.c simplessl.c https.c ftp3rdparty.c \ + getinfo.c anyauthput.c cookie_interface.c 10-at-a-time.c + +PROGRAMS = $(CSOURCES:.c=.exe) all: $(PROGRAMS) @@ -32,3 +32,5 @@ all: $(PROGRAMS) clean: rm -f $(PROGRAMS) +# DO NOT DELETE THIS LINE + |