smtp: use the upload buffer size for scratch buffer malloc
[platform/upstream/curl.git] / lib / makefile.dj
index 93bb2a8..8ab2d57 100644 (file)
@@ -1,37 +1,72 @@
+#***************************************************************************
+#                                  _   _ ____  _
+#  Project                     ___| | | |  _ \| |
+#                             / __| | | | |_) | |
+#                            | (__| |_| |  _ <| |___
+#                             \___|\___/|_| \_\_____|
 #
-#  Adapted for djgpp2 / Watt-32 / DOS by
-#  Gisle Vanem <giva@bgnett.no>
+# Copyright (C) 2003 - 2008, Gisle Vanem <gvanem@yahoo.no>.
+# Copyright (C) 2003 - 2017, 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
+# are also available at https://curl.haxx.se/docs/copyright.html.
+#
+# You may opt to use, copy, modify, merge, publish, distribute and/or sell
+# copies of the Software, and permit persons to whom the Software is
+# furnished to do so, under the terms of the COPYING file.
+#
+# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+# KIND, either express or implied.
+#
+#***************************************************************************
+
+#
+#  Adapted for djgpp2 / Watt-32 / DOS
 #
-# $Id$
 
-DEPEND_PREREQ = config.h
+DEPEND_PREREQ = curl_config.h
+VPATH  = vtls vauth
 TOPDIR = ..
 
 include ../packages/DOS/common.dj
-
-# Makefile.inc provides the CSOURCES and HHEADERS defines
 include Makefile.inc
 
-OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))
+CFLAGS += -DBUILDING_LIBCURL
 
-CURL_LIB = libcurl.a
+SOURCES = $(sort $(CSOURCES))
+OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(SOURCES:.c=.o)))
 
-# NOTE: if ../include/curl/curlbuild.h is missing, you're probably building this
-# from a CVS checkout and then you need to run buildconf.bat first!
+CURL_LIB = libcurl.a
 
-all: $(OBJ_DIR) config.h $(CURL_LIB)
+all: $(OBJ_DIR) curl_config.h $(CURL_LIB)
 
 $(CURL_LIB): $(OBJECTS)
        ar rs $@ $?
 
-config.h: config.dos
-       cp $^ $@
+curl_config.h: config-dos.h
+       $(COPY) $^ $@
+
+# clean generated files
+#
+genclean:
+       - $(DELETE) curl_config.h
 
-clean:
-       - rm -f $(OBJECTS)
+# clean object files and subdir
+#
+objclean: genclean
+       - $(DELETE) $(OBJ_DIR)$(DS)*.o
+       - $(RMDIR) $(OBJ_DIR)
 
+# clean without removing built library
+#
+clean: objclean
+       - $(DELETE) depend.dj
+
+# clean everything
+#
 realclean vclean: clean
-       - rm -f config.h depend.dj $(CURL_LIB)
+       - $(DELETE) $(CURL_LIB)
 
 -include depend.dj