blob: 8ab2d575dabf42084728916cf67b7a26d8b771b6 [file] [log] [blame]
Alex Deymo8f1a2142016-06-28 14:49:26 -07001#***************************************************************************
2# _ _ ____ _
3# Project ___| | | | _ \| |
4# / __| | | | |_) | |
5# | (__| |_| | _ <| |___
6# \___|\___/|_| \_\_____|
Lucas Eckels9bd90e62012-08-06 15:07:02 -07007#
Alex Deymo8f1a2142016-06-28 14:49:26 -07008# Copyright (C) 2003 - 2008, Gisle Vanem <gvanem@yahoo.no>.
Elliott Hughes82be86d2017-09-20 17:00:17 -07009# Copyright (C) 2003 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
Alex Deymo8f1a2142016-06-28 14:49:26 -070010#
11# This software is licensed as described in the file COPYING, which
12# you should have received as part of this distribution. The terms
13# are also available at https://curl.haxx.se/docs/copyright.html.
14#
15# You may opt to use, copy, modify, merge, publish, distribute and/or sell
16# copies of the Software, and permit persons to whom the Software is
17# furnished to do so, under the terms of the COPYING file.
18#
19# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
20# KIND, either express or implied.
21#
22#***************************************************************************
23
24#
25# Adapted for djgpp2 / Watt-32 / DOS
Lucas Eckels9bd90e62012-08-06 15:07:02 -070026#
27
28DEPEND_PREREQ = curl_config.h
Elliott Hughes82be86d2017-09-20 17:00:17 -070029VPATH = vtls vauth
Lucas Eckels9bd90e62012-08-06 15:07:02 -070030TOPDIR = ..
31
32include ../packages/DOS/common.dj
33include Makefile.inc
34
Elliott Hughes82be86d2017-09-20 17:00:17 -070035CFLAGS += -DBUILDING_LIBCURL
36
Alex Deymo8f1a2142016-06-28 14:49:26 -070037SOURCES = $(sort $(CSOURCES))
38OBJECTS = $(addprefix $(OBJ_DIR)/, $(notdir $(SOURCES:.c=.o)))
Lucas Eckels9bd90e62012-08-06 15:07:02 -070039
40CURL_LIB = libcurl.a
41
Lucas Eckels9bd90e62012-08-06 15:07:02 -070042all: $(OBJ_DIR) curl_config.h $(CURL_LIB)
43
44$(CURL_LIB): $(OBJECTS)
45 ar rs $@ $?
46
Bertrand SIMONNETe6cd7382015-07-01 15:39:44 -070047curl_config.h: config-dos.h
Lucas Eckels9bd90e62012-08-06 15:07:02 -070048 $(COPY) $^ $@
49
50# clean generated files
51#
52genclean:
53 - $(DELETE) curl_config.h
54
55# clean object files and subdir
56#
57objclean: genclean
58 - $(DELETE) $(OBJ_DIR)$(DS)*.o
59 - $(RMDIR) $(OBJ_DIR)
60
61# clean without removing built library
62#
63clean: objclean
64 - $(DELETE) depend.dj
65
66# clean everything
67#
68realclean vclean: clean
69 - $(DELETE) $(CURL_LIB)
70
71-include depend.dj
72