2003-12-19 16:03:35 +08:00
|
|
|
#
|
|
|
|
# Adapted for djgpp2 / Watt-32 / DOS by
|
|
|
|
# Gisle Vanem <giva@bgnett.no>
|
|
|
|
#
|
2006-08-30 00:35:11 +08:00
|
|
|
# $Id$
|
2003-12-19 16:03:35 +08:00
|
|
|
|
2009-07-14 21:25:14 +08:00
|
|
|
DEPEND_PREREQ = curl_config.h
|
2007-02-27 23:24:32 +08:00
|
|
|
TOPDIR = ..
|
2003-12-19 16:03:35 +08:00
|
|
|
|
|
|
|
include ../packages/DOS/common.dj
|
2004-07-12 07:43:32 +08:00
|
|
|
include Makefile.inc
|
|
|
|
|
|
|
|
OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))
|
|
|
|
|
2003-12-19 16:03:35 +08:00
|
|
|
CURL_LIB = libcurl.a
|
|
|
|
|
2009-06-14 02:11:17 +08:00
|
|
|
# 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.
|
2009-06-08 21:53:23 +08:00
|
|
|
|
2009-07-14 21:25:14 +08:00
|
|
|
all: $(OBJ_DIR) curl_config.h $(CURL_LIB)
|
2003-12-19 16:03:35 +08:00
|
|
|
|
|
|
|
$(CURL_LIB): $(OBJECTS)
|
|
|
|
ar rs $@ $?
|
|
|
|
|
2009-07-14 21:25:14 +08:00
|
|
|
curl_config.h: config.dos
|
2009-06-14 02:11:17 +08:00
|
|
|
$(COPY) $^ $@
|
|
|
|
|
|
|
|
# clean generated files
|
|
|
|
#
|
|
|
|
genclean:
|
2009-07-14 21:25:14 +08:00
|
|
|
- $(DELETE) curl_config.h
|
2003-12-19 16:03:35 +08:00
|
|
|
|
2009-06-14 02:11:17 +08:00
|
|
|
# clean object files and subdir
|
|
|
|
#
|
|
|
|
objclean: genclean
|
|
|
|
- $(DELETE) $(OBJ_DIR)$(DS)*.o
|
|
|
|
- $(RMDIR) $(OBJ_DIR)
|
2003-12-19 16:03:35 +08:00
|
|
|
|
2009-06-14 02:11:17 +08:00
|
|
|
# clean without removing built library
|
|
|
|
#
|
|
|
|
clean: objclean
|
|
|
|
- $(DELETE) depend.dj
|
|
|
|
|
|
|
|
# clean everything
|
|
|
|
#
|
2003-12-19 16:03:35 +08:00
|
|
|
realclean vclean: clean
|
2009-06-14 02:11:17 +08:00
|
|
|
- $(DELETE) $(CURL_LIB)
|
2003-12-19 16:03:35 +08:00
|
|
|
|
2007-02-27 23:24:32 +08:00
|
|
|
-include depend.dj
|
2003-12-19 16:03:35 +08:00
|
|
|
|