2015-08-30 13:51:55 +03:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
2003-12-19 11:03:35 +03:00
|
|
|
#
|
2015-10-20 14:33:01 +03:00
|
|
|
# Copyright (C) 2003 - 2008, Gisle Vanem <gvanem@yahoo.no>.
|
2015-08-30 13:51:55 +03:00
|
|
|
# Copyright (C) 2003 - 2015, 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
|
2016-02-03 02:19:02 +03:00
|
|
|
# are also available at https://curl.haxx.se/docs/copyright.html.
|
2015-08-30 13:51:55 +03:00
|
|
|
#
|
|
|
|
# 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
|
2003-12-19 11:03:35 +03:00
|
|
|
#
|
|
|
|
|
2009-07-14 17:25:14 +04:00
|
|
|
DEPEND_PREREQ = curl_config.h
|
2015-10-21 19:59:43 +03:00
|
|
|
VPATH = vtls
|
2007-02-27 18:24:32 +03:00
|
|
|
TOPDIR = ..
|
2003-12-19 11:03:35 +03:00
|
|
|
|
|
|
|
include ../packages/DOS/common.dj
|
2004-07-12 03:43:32 +04:00
|
|
|
include Makefile.inc
|
|
|
|
|
2015-10-21 19:59:43 +03:00
|
|
|
SOURCES = $(sort $(CSOURCES))
|
|
|
|
OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(SOURCES:.c=.o)))
|
2004-07-12 03:43:32 +04:00
|
|
|
|
2003-12-19 11:03:35 +03:00
|
|
|
CURL_LIB = libcurl.a
|
|
|
|
|
2009-06-13 22:11:17 +04:00
|
|
|
# NOTE: if ../include/curl/curlbuild.h is missing, you're probably building
|
2010-03-24 12:44:25 +03:00
|
|
|
# this from a git checkout and then you need to run buildconf.bat first.
|
2009-06-08 17:53:23 +04:00
|
|
|
|
2009-07-14 17:25:14 +04:00
|
|
|
all: $(OBJ_DIR) curl_config.h $(CURL_LIB)
|
2003-12-19 11:03:35 +03:00
|
|
|
|
|
|
|
$(CURL_LIB): $(OBJECTS)
|
|
|
|
ar rs $@ $?
|
|
|
|
|
2010-12-03 06:13:33 +03:00
|
|
|
curl_config.h: config-dos.h
|
2009-06-13 22:11:17 +04:00
|
|
|
$(COPY) $^ $@
|
|
|
|
|
|
|
|
# clean generated files
|
|
|
|
#
|
|
|
|
genclean:
|
2009-07-14 17:25:14 +04:00
|
|
|
- $(DELETE) curl_config.h
|
2003-12-19 11:03:35 +03:00
|
|
|
|
2009-06-13 22:11:17 +04:00
|
|
|
# clean object files and subdir
|
|
|
|
#
|
|
|
|
objclean: genclean
|
|
|
|
- $(DELETE) $(OBJ_DIR)$(DS)*.o
|
|
|
|
- $(RMDIR) $(OBJ_DIR)
|
2003-12-19 11:03:35 +03:00
|
|
|
|
2009-06-13 22:11:17 +04:00
|
|
|
# clean without removing built library
|
|
|
|
#
|
|
|
|
clean: objclean
|
|
|
|
- $(DELETE) depend.dj
|
|
|
|
|
|
|
|
# clean everything
|
|
|
|
#
|
2003-12-19 11:03:35 +03:00
|
|
|
realclean vclean: clean
|
2009-06-13 22:11:17 +04:00
|
|
|
- $(DELETE) $(CURL_LIB)
|
2003-12-19 11:03:35 +03:00
|
|
|
|
2007-02-27 18:24:32 +03:00
|
|
|
-include depend.dj
|
2003-12-19 11:03:35 +03:00
|
|
|
|