diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-06-01 14:57:50 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-06-02 11:23:40 +0200 |
commit | aca1aba0bdcb6f883cee09329f40a5693c97c874 (patch) | |
tree | 376fc697cb2d97c87d0bf66c3401177c90862057 /Makefile.dist | |
parent | 571280678594c4ccfbfcad854c76e02d0e350809 (diff) | |
download | curl-aca1aba0bdcb6f883cee09329f40a5693c97c874.tar.gz |
build: remove the Borland specific makefiles
According to the user survey 2018, not even one out of 670 users use
them. Nobody on the mailing list spoke up for them either.
Closes #2629
Diffstat (limited to 'Makefile.dist')
-rw-r--r-- | Makefile.dist | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/Makefile.dist b/Makefile.dist index 8577c8a14..a6316ab5f 100644 --- a/Makefile.dist +++ b/Makefile.dist @@ -5,7 +5,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -28,30 +28,6 @@ ssl: ./configure --with-ssl make -borland: - cd lib - $(MAKE) -f Makefile.b32 - cd ..\src - $(MAKE) -f Makefile.b32 - -borland-ssl: - cd lib - $(MAKE) -f Makefile.b32 WITH_SSL=1 - cd ..\src - $(MAKE) -f Makefile.b32 WITH_SSL=1 - -borland-ssl-zlib: - cd lib - $(MAKE) -f Makefile.b32 WITH_SSL=1 WITH_ZLIB=1 - cd ..\src - $(MAKE) -f Makefile.b32 WITH_SSL=1 WITH_ZLIB=1 - -borland-clean: - cd lib - $(MAKE) -f Makefile.b32 clean - cd ..\src - $(MAKE) -f Makefile.b32 clean - watcom: .SYMBOLIC cd lib && $(MAKE) -u -f Makefile.Watcom cd src && $(MAKE) -u -f Makefile.Watcom |